From d94ffac4a584dc7a4f6f2ec567b8caab05ce9253 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 6 May 2020 19:04:05 +0200 Subject: New build parameters and shared includes This changes many files but I've just applied some replace commands.. So - nothing special! --- src/kernel/syscall/actions/sys_read.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/kernel/syscall/actions/sys_read.c') diff --git a/src/kernel/syscall/actions/sys_read.c b/src/kernel/syscall/actions/sys_read.c index 492e5fd..8b16064 100644 --- a/src/kernel/syscall/actions/sys_read.c +++ b/src/kernel/syscall/actions/sys_read.c @@ -1,7 +1,7 @@ #include -#include +#include -uint32_t sys_read(char *path, uint32_t offset, uint32_t count, uint8_t *buf) +u32 sys_read(char *path, u32 offset, u32 count, u8 *buf) { return read(path, offset, count, buf); } \ No newline at end of file -- cgit v1.2.3