diff options
author | Florian Weimer <fweimer@redhat.com> | 2021-07-21 11:42:31 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2021-07-21 11:58:09 +0200 |
commit | 82c395d91ea4f69120d453aeec398e3042cad5fc (patch) | |
tree | 303dc68a9a65b06962c834932cd02c72f35a2432 /sysdeps/unix/sysv/linux/powerpc/ioctl.c | |
parent | 39e8eb597303fb8bea07d87f82f4df1cf1586c1c (diff) | |
download | glibc-82c395d91ea4f69120d453aeec398e3042cad5fc.tar glibc-82c395d91ea4f69120d453aeec398e3042cad5fc.tar.gz glibc-82c395d91ea4f69120d453aeec398e3042cad5fc.tar.bz2 glibc-82c395d91ea4f69120d453aeec398e3042cad5fc.zip |
misc: Add time64 alias for ioctl
Reviewed-by: Lukasz Majewski <lukma@denx.de>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'sysdeps/unix/sysv/linux/powerpc/ioctl.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/powerpc/ioctl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/powerpc/ioctl.c b/sysdeps/unix/sysv/linux/powerpc/ioctl.c index 1ee9d19d4d..a81c7ba54c 100644 --- a/sysdeps/unix/sysv/linux/powerpc/ioctl.c +++ b/sysdeps/unix/sysv/linux/powerpc/ioctl.c @@ -63,3 +63,6 @@ __ioctl (int fd, unsigned long int request, ...) } libc_hidden_def (__ioctl) weak_alias (__ioctl, ioctl) +#if __TIMESIZE != 64 +weak_alias (__ioctl, __ioctl_time64) +#endif |