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