1#include <unistd.h> 2#include "syscall.h" 3 4int unlinkat(int fd, const char *path, int flag) 5{ 6 return syscall(SYS_unlinkat, fd, path, flag); 7}