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