1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
/*
* rename() for uClibc
*
* Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
*
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
*/
#include <sys/syscall.h>
#include <stdio.h>
#include <unistd.h>
#if defined __NR_renameat && !defined __NR_rename
# include <fcntl.h>
int rename(const char *oldpath, const char *newpath)
{
return renameat(AT_FDCWD, oldpath, AT_FDCWD, newpath);
}
#elif defined __NR_renameat2
# include <fcntl.h>
int rename(const char *oldpath, const char *newpath)
{
_syscall2(int, renameat2, const char *, oldpath, const char *, newpath)
}
#else
_syscall2(int, rename, const char *, oldpath, const char *, newpath)
#endif
|