diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2019-02-27 07:53:13 -0800 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2019-02-27 09:42:44 -0800 |
commit | 1b2184177553ce4ef8458034927ef50854be2af6 (patch) | |
tree | b91ea628502ebbb23a2c9beae90917262cede379 /sysdeps/unix/sysv/linux/renameat2.c | |
parent | f627dd4da804c00b5e89e5e2c488c2bad6205262 (diff) | |
download | glibc-1b2184177553ce4ef8458034927ef50854be2af6.tar.gz glibc-1b2184177553ce4ef8458034927ef50854be2af6.tar.xz glibc-1b2184177553ce4ef8458034927ef50854be2af6.zip |
hurd: Add renameat2 support for RENAME_NOREPLACE
* include/stdio.h (__renameat2): New hidden prototype. * stdio-common/renameat2.c (__renameat2): Add hidden definition. * sysdeps/mach/hurd/renameat.c (__renameat): Move implementation to... * sysdeps/mach/hurd/renameat2.c (__renameat2): ... new function, and add support for RENAME_NOREPLACE. * sysdeps/unix/sysv/linux/renameat2.c (__renameat2): Add hidden definition.
Diffstat (limited to 'sysdeps/unix/sysv/linux/renameat2.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/renameat2.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/renameat2.c b/sysdeps/unix/sysv/linux/renameat2.c index 566868cc93..a9cc2ea6b8 100644 --- a/sysdeps/unix/sysv/linux/renameat2.c +++ b/sysdeps/unix/sysv/linux/renameat2.c @@ -21,7 +21,7 @@ #include <sysdep.h> int -renameat2 (int oldfd, const char *old, int newfd, const char *new, +__renameat2 (int oldfd, const char *old, int newfd, const char *new, unsigned int flags) { #if !defined (__NR_renameat) || defined (__ASSUME_RENAMEAT2) @@ -42,3 +42,5 @@ renameat2 (int oldfd, const char *old, int newfd, const char *new, return -1; #endif } +libc_hidden_def (__renameat2) +weak_alias (__renameat2, renameat2) |