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.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/userspace/libc/syscall.c') diff --git a/src/userspace/libc/syscall.c b/src/userspace/libc/syscall.c index f6761ac..fc0e09a 100644 --- a/src/userspace/libc/syscall.c +++ b/src/userspace/libc/syscall.c @@ -9,9 +9,9 @@ DEFN_SYSCALL1(exit, 1, u32); DEFN_SYSCALL0(fork, 2); -DEFN_SYSCALL4(read, 3, char *, u32, u32, char *); +DEFN_SYSCALL4(read, 3, char *, u32, u32, u8 *); -DEFN_SYSCALL4(write, 4, char *, u32, u32, char *); +DEFN_SYSCALL4(write, 4, char *, u32, u32, u8 *); DEFN_SYSCALL1(exec, 5, char *); -- cgit v1.2.3