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