streamline old-kernel fallback path of pipe2 to use syscalls directly
[musl] / src / unistd / renameat.c
1 #include <stdio.h>
2 #include "syscall.h"
3
4 int renameat(int oldfd, const char *old, int newfd, const char *new)
5 {
6         return syscall(SYS_renameat, oldfd, old, newfd, new);
7 }