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