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



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