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