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