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