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