blob: 125748221f13c3a4fe5fb33684f309c18f802ed7 (
about) (
plain) (
blame)
1
2
3
4
5
6
7
|
#include <stdio.h>
#include "syscall.h"
int renameat(int oldfd, const char *old, int newfd, const char *new)
{
return syscall(SYS_renameat, oldfd, old, newfd, new);
}
|