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