From 21237865a7b9e4898516678382a98163a9248592 Mon Sep 17 00:00:00 2001 From: "Peter S. Mazinger" Date: Wed, 7 Dec 2005 00:50:06 +0000 Subject: Hide *clnt|pmap|svc* and some rpc. inet/rpc is full of relocs ... --- libc/sysdeps/linux/arm/ioperm.c | 2 ++ libc/sysdeps/linux/common/dup2.c | 4 +++- libc/sysdeps/linux/common/readlink.c | 4 +++- 3 files changed, 8 insertions(+), 2 deletions(-) (limited to 'libc/sysdeps/linux') diff --git a/libc/sysdeps/linux/arm/ioperm.c b/libc/sysdeps/linux/arm/ioperm.c index f887d54f1..d69d475d6 100644 --- a/libc/sysdeps/linux/arm/ioperm.c +++ b/libc/sysdeps/linux/arm/ioperm.c @@ -33,6 +33,8 @@ the area affected (this is a kernel limitation). So we now just enable all the ports all of the time. */ +#define readlink __readlink + #include #include #include diff --git a/libc/sysdeps/linux/common/dup2.c b/libc/sysdeps/linux/common/dup2.c index a5a832f6f..71164aa0b 100644 --- a/libc/sysdeps/linux/common/dup2.c +++ b/libc/sysdeps/linux/common/dup2.c @@ -9,4 +9,6 @@ #include "syscalls.h" #include -_syscall2(int, dup2, int, oldfd, int, newfd); +#define __NR___dup2 __NR_dup2 +attribute_hidden _syscall2(int, __dup2, int, oldfd, int, newfd); +strong_alias(__dup2,dup2) diff --git a/libc/sysdeps/linux/common/readlink.c b/libc/sysdeps/linux/common/readlink.c index 8ebb5eaa9..45db1a64f 100644 --- a/libc/sysdeps/linux/common/readlink.c +++ b/libc/sysdeps/linux/common/readlink.c @@ -9,4 +9,6 @@ #include "syscalls.h" #include -_syscall3(int, readlink, const char *, path, char *, buf, size_t, bufsiz); +#define __NR___readlink __NR_readlink +attribute_hidden _syscall3(int, __readlink, const char *, path, char *, buf, size_t, bufsiz); +strong_alias(__readlink,readlink) -- cgit v1.2.3