summaryrefslogtreecommitdiff
path: root/lib/libc/stdio/renameat.c
blob: 93d435fa29992a215305e54ab307e06086947497 (plain)
1
2
3
4
5
6
#include <syscall.h>

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