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


#include <stdio.h>   // for rename
#include <syscall.h> // for __syscall_2, syscall

int rename(const char *old, const char *new)
{
	return syscall(rename, old, new);
}