more header cleanup and conformance fixes - locale.h, time.h
[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 syscall2(__NR_rename, (long)old, (long)new);
7 }