aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/syscall/syscall.h
diff options
context:
space:
mode:
authorMarvin Borner2020-05-06 18:16:47 +0200
committerMarvin Borner2020-05-06 18:16:47 +0200
commit1a8563a05608b5b5e27eada44cf4790926001c68 (patch)
tree3e25e3168dd260bb66d22ac1b559bcefd4c405ed /src/kernel/syscall/syscall.h
parent476af3bcc2f2a072d32db0523c382af99a9d2b5b (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/kernel/syscall/syscall.h')
-rw-r--r--src/kernel/syscall/syscall.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/kernel/syscall/syscall.h b/src/kernel/syscall/syscall.h
index 322e551..9af18e8 100644
--- a/src/kernel/syscall/syscall.h
+++ b/src/kernel/syscall/syscall.h
@@ -12,9 +12,9 @@ uint32_t sys_exit(uint32_t code);
uint32_t sys_fork(struct regs *r);
-uint32_t sys_read(char *path, uint32_t offset, uint32_t count, char *buf);
+uint32_t sys_read(char *path, uint32_t offset, uint32_t count, uint8_t *buf);
-uint32_t sys_write(char *path, uint32_t offset, uint32_t count, char *buf);
+uint32_t sys_write(char *path, uint32_t offset, uint32_t count, uint8_t *buf);
uint32_t sys_exec(char *path);