ref: ae6540fbe147eb182f05e94cd4072dc55b806196 dir: /src/libc/stdio/remove.c/
#include <stdio.h> #include "../syscall.h" #undef remove int remove(const char *filename) { return _unlink(filename); }