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