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