summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/renameat.c
blob: c7e9a6838c8c76a02831ea4ac839b70853392c21 (plain)
1
2
3
4
5
6
7
8
9



#include <syscall.h> // for __syscall_4, syscall

int renameat(int oldfd, const char *old, int newfd, const char *new)
{
	return syscall(renameat, oldfd, old, newfd, new);
}