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