ref: fcec548cff5349d73e1c64a99aee77ce2331858d 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); }