diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2009-02-25 11:15:13 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2009-02-25 11:15:13 +0000 |
commit | 1c03d97b4dea9fef596506d7fbeb2fa11f75004c (patch) | |
tree | 57741b93e2bb251a818bc869bbddd53bd812fe77 /libc/sysdeps/linux/common/read.c | |
parent | 4cbaba855555162846ec42f6d6a488dced5aa739 (diff) | |
download | uClibc-alpine-1c03d97b4dea9fef596506d7fbeb2fa11f75004c.tar.bz2 uClibc-alpine-1c03d97b4dea9fef596506d7fbeb2fa11f75004c.tar.xz |
reinstate __libc_foo for linuxthreads.old
Diffstat (limited to 'libc/sysdeps/linux/common/read.c')
-rw-r--r-- | libc/sysdeps/linux/common/read.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libc/sysdeps/linux/common/read.c b/libc/sysdeps/linux/common/read.c index b380812e6..9e122fc10 100644 --- a/libc/sysdeps/linux/common/read.c +++ b/libc/sysdeps/linux/common/read.c @@ -11,4 +11,9 @@ #include <unistd.h> _syscall3(ssize_t, read, int, fd, __ptr_t, buf, size_t, count) +#ifndef __LINUXTHREADS_OLD__ libc_hidden_def(read) +#else +libc_hidden_weak(read) +strong_alias(read,__libc_read) +#endif |