diff options
author | Andreas Schwab <schwab@suse.de> | 2020-03-02 16:25:24 +0100 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2020-03-02 17:04:32 +0100 |
commit | 808cd69267bb93f0335a8da072f4c026a7753f5f (patch) | |
tree | 076e4e26f74cd22dda6903810e9c3a5b49151649 /sysdeps/unix/sysv/linux/utimensat.c | |
parent | 0499a353a6e196f468e7ec554cb13c82011f0e36 (diff) | |
download | glibc-808cd69267bb93f0335a8da072f4c026a7753f5f.tar.gz glibc-808cd69267bb93f0335a8da072f4c026a7753f5f.tar.xz glibc-808cd69267bb93f0335a8da072f4c026a7753f5f.zip |
Add missing libc_hidden_def for __utimensat64
Diffstat (limited to 'sysdeps/unix/sysv/linux/utimensat.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/utimensat.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/utimensat.c b/sysdeps/unix/sysv/linux/utimensat.c index e4cf089b1d..eb16f0f3d5 100644 --- a/sysdeps/unix/sysv/linux/utimensat.c +++ b/sysdeps/unix/sysv/linux/utimensat.c @@ -76,6 +76,8 @@ __utimensat64 (int fd, const char *file, const struct __timespec64 tsp64[2], } #if __TIMESIZE != 64 +libc_hidden_def (__utimensat64) + int __utimensat (int fd, const char *file, const struct timespec tsp[2], int flags) |