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


#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);
}