#ifndef READ_H #define READ_H #include "syscalls.h" #include "sizes.h" static u64 read(unsigned int fd, char * buf, unsigned long count) { return syscall(READ, fd, buf, count, 0, 0); } #endif