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