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