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