shithub: scc

ref: fb8dbbcf81b73f635d9269048a6a1e09c029c1ed
dir: /src/libc/stdio/rename.c/

View raw version
#include <stdio.h>

#include "../syscall.h"

#undef rename

int
rename(const char *old, const char *new)
{
	return _rename(old, new);
}