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