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