1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
#ifndef IO_SYS_H #define IO_SYS_H #include "write.h" #include "read.h" #include "open.h" #include "close.h" #define STDIN_FD 0 #define STDOUT_FD 1 #define STDERR_FD 2 #define FILE_READ_ONLY 0 #define FILE_WRITE_ONLY 1 #define FILE_READ_WRITE 2 #endif