summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/rename.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/sysdeps/linux/common/rename.c')
-rw-r--r--libc/sysdeps/linux/common/rename.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/rename.c b/libc/sysdeps/linux/common/rename.c
index 30a4ed75f..613ae4e44 100644
--- a/libc/sysdeps/linux/common/rename.c
+++ b/libc/sysdeps/linux/common/rename.c
@@ -20,7 +20,9 @@ int rename(const char *oldpath, const char *newpath)
# include <fcntl.h>
int rename(const char *oldpath, const char *newpath)
{
- _syscall2(int, renameat2, const char *, oldpath, const char *, newpath)
+ _syscall5(int, renameat2, int, olddfd, const char *, oldpath,
+ int, newdfd, const char *, newpath, int, flags)
+ return renameat2(AT_FDCWD, oldpath, AT_FDCWD, newpath, 0);
}
#else
_syscall2(int, rename, const char *, oldpath, const char *, newpath)