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