1 2 3 4 5 6 7
#include <stdint.h> #include <syscall.h> u32 sys_read(char *path, u32 offset, u32 count, char *buf) { return syscall_read(path, offset, count, buf); }