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