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