#ifndef CLOSE_H #define CLOSE_H #include "syscalls.h" static int close(unsigned int fd) { syscall(CLOSE, fd); } #endif