diff options
author | Marvin Borner | 2020-05-06 18:16:47 +0200 |
---|---|---|
committer | Marvin Borner | 2020-05-06 18:16:47 +0200 |
commit | 1a8563a05608b5b5e27eada44cf4790926001c68 (patch) | |
tree | 3e25e3168dd260bb66d22ac1b559bcefd4c405ed /src/userspace/libc/syscall.h | |
parent | 476af3bcc2f2a072d32db0523c382af99a9d2b5b (diff) |
Removed vfs - ext2 ftw!
I should really start thinking before I implement features. Now I did
and I have quite a good plan for the future of Melvix (hint: not
unix/posix-compliant!).
Diffstat (limited to 'src/userspace/libc/syscall.h')
-rw-r--r-- | src/userspace/libc/syscall.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/userspace/libc/syscall.h b/src/userspace/libc/syscall.h index 262e05a..038f985 100644 --- a/src/userspace/libc/syscall.h +++ b/src/userspace/libc/syscall.h @@ -74,9 +74,9 @@ DECL_SYSCALL1(exit, u32); DECL_SYSCALL0(fork); -DECL_SYSCALL4(read, char *, u32, u32, char *); +DECL_SYSCALL4(read, char *, u32, u32, u8 *); -DECL_SYSCALL4(write, char *, u32, u32, char *); +DECL_SYSCALL4(write, char *, u32, u32, u8 *); DECL_SYSCALL1(exec, char *); |