1 2 3 4 5 6 7 8 9
#ifndef READ_H #define READ_H #include "syscalls.h" static int read(unsigned int fd, char * buf, unsigned long count) { return syscall(READ, fd, buf, count, 0, 0); } #endif