ref: c863f70762d5c00224431259e92b0eb5114b2b61 dir: /src/libc/stdio/rename.c/
#include <stdio.h> #include "../syscall.h" #undef rename int rename(const char *old, const char *new) { return _rename(old, new); }