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