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