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