initial version of mips (o32) port, based on work by Richard Pennington (rdp)
[musl] / src / stdio / rename.c
1 #include <stdio.h>
2 #include "syscall.h"
3
4 int rename(const char *old, const char *new)
5 {
6         return syscall(SYS_rename, old, new);
7 }