1 2 3 4 5 6 7 8 9 10 11
#ifndef CLOSE_H #define CLOSE_H #include "syscalls.h" static int close(unsigned int fd) { syscall(CLOSE, fd); } #endif