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