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