From 1a8563a05608b5b5e27eada44cf4790926001c68 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 6 May 2020 18:16:47 +0200 Subject: 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!). --- src/userspace/libc/syscall.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/userspace/libc/syscall.h') 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 *); -- cgit v1.2.3