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/fs/fs.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/kernel/fs/fs.h') diff --git a/src/kernel/fs/fs.h b/src/kernel/fs/fs.h index 88dcd95..58b23db 100644 --- a/src/kernel/fs/fs.h +++ b/src/kernel/fs/fs.h @@ -3,9 +3,9 @@ #include -uint32_t get_file_size(char *path); -uint32_t read(char *path, uint32_t offset, uint32_t count, uint8_t *buf); -uint32_t write(char *path, uint32_t offset, uint32_t count, uint8_t *buf); -uint8_t *read_file(char *path); // Only for temp kernel reads +u32 get_file_size(char *path); +u32 read(char *path, u32 offset, u32 count, u8 *buf); +u32 write(char *path, u32 offset, u32 count, u8 *buf); +u8 *read_file(char *path); // Only for temp kernel reads #endif \ No newline at end of file -- cgit v1.2.3