#ifndef UNLINK_H #define UNLINK_H #include "syscalls.h" int unlink(const char *pathname) { return syscall(UNLINK, pathname); } #endif