diff options
author | dzwdz | 2024-08-17 17:22:03 +0200 |
---|---|---|
committer | dzwdz | 2024-08-17 17:22:03 +0200 |
commit | c04e6c907efdbfa0a897c55530262f59ea1a5cef (patch) | |
tree | 94aa0befec881039ca3fd8cc265f4687d67e83ac /src/libc/include | |
parent | 35d62d227ea74e19eebcca3882dd8a97778736e7 (diff) |
libc/compat: make c0_fs_respond's buffer argument const
Diffstat (limited to 'src/libc/include')
-rw-r--r-- | src/libc/include/camellia/compat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libc/include/camellia/compat.h b/src/libc/include/camellia/compat.h index 3b0ba4a..8fbc16f 100644 --- a/src/libc/include/camellia/compat.h +++ b/src/libc/include/camellia/compat.h @@ -3,7 +3,7 @@ /* c0 - fs_wait returning a handle */ long c0_fs_wait(char *buf, long len, struct ufs_request *res); -long c0_fs_respond(void *buf, long ret, int flags); +long c0_fs_respond(const void *buf, long ret, int flags); long _sys_await(void); void _sys_filicide(void); |