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