From 1c6d89e9a40302430d5986a09c7cf7594b93143c Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Sun, 17 Sep 2017 21:57:39 +0200 Subject: Add missing libc_hidden_weak/def calls * io/read.c (read): Add libc_hidden_weak. * sysdeps/mach/hurd/read.c (read): Likewise. * io/write.c (write): Likewise. * sysdeps/mach/hurd/write.c (write): Likewise. * io/pread64.c (__pread64): Likewise. * sysdeps/mach/hurd/pread64.c (__pread64): Likewise. * posix/pread64.c (__pread64): Add libc_hidden_def. --- sysdeps/mach/hurd/pread64.c | 1 + sysdeps/mach/hurd/read.c | 1 + sysdeps/mach/hurd/write.c | 1 + 3 files changed, 3 insertions(+) (limited to 'sysdeps/mach') diff --git a/sysdeps/mach/hurd/pread64.c b/sysdeps/mach/hurd/pread64.c index c4a61c92e2..903304956c 100644 --- a/sysdeps/mach/hurd/pread64.c +++ b/sysdeps/mach/hurd/pread64.c @@ -34,5 +34,6 @@ __libc_pread64 (int fd, void *buf, size_t nbytes, off64_t offset) #ifndef __libc_pread64 weak_alias (__libc_pread64, __pread64) +libc_hidden_weak (__pread64) weak_alias (__libc_pread64, pread64) #endif diff --git a/sysdeps/mach/hurd/read.c b/sysdeps/mach/hurd/read.c index 5cef0b415f..776a7a5610 100644 --- a/sysdeps/mach/hurd/read.c +++ b/sysdeps/mach/hurd/read.c @@ -30,3 +30,4 @@ libc_hidden_def (__libc_read) weak_alias (__libc_read, __read) libc_hidden_weak (__read) weak_alias (__libc_read, read) +libc_hidden_weak (read) diff --git a/sysdeps/mach/hurd/write.c b/sysdeps/mach/hurd/write.c index bfa96735e2..32f4905df1 100644 --- a/sysdeps/mach/hurd/write.c +++ b/sysdeps/mach/hurd/write.c @@ -30,3 +30,4 @@ libc_hidden_def (__libc_write) weak_alias (__libc_write, __write) libc_hidden_weak (__write) weak_alias (__libc_write, write) +libc_hidden_weak (write) -- cgit 1.4.1