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