blob: 8857f8526930caebed6194a6efd7a93a138e093d (
plain)
1
2
3
4
5
6
7
8
|
#include "asm/unistd_64.h" // for __NR_rename
#include <syscall.h> // for __syscall_2, syscall
int rename(const char *old, const char *new)
{
return syscall(rename, old, new);
}
|