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