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