diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-02-25 04:03:33 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-02-25 04:03:33 +0000 |
commit | cb6a88484ce0b5ffba2fe98a40e2d51f4af92eb8 (patch) | |
tree | 520f8e8d113184cfa7954ebd274564b8c255fa9a /libc/inet/rpc/rpc_dtablesize.c | |
parent | e4461be66e2655058aef358b00050bc70ac72861 (diff) | |
download | uClibc-alpine-cb6a88484ce0b5ffba2fe98a40e2d51f4af92eb8.tar.bz2 uClibc-alpine-cb6a88484ce0b5ffba2fe98a40e2d51f4af92eb8.tar.xz |
Merge from trunk. Going pretty good so far. Kind of. Okay, not really.
Diffstat (limited to 'libc/inet/rpc/rpc_dtablesize.c')
-rw-r--r-- | libc/inet/rpc/rpc_dtablesize.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/libc/inet/rpc/rpc_dtablesize.c b/libc/inet/rpc/rpc_dtablesize.c index ede7120b3..11a7ad457 100644 --- a/libc/inet/rpc/rpc_dtablesize.c +++ b/libc/inet/rpc/rpc_dtablesize.c @@ -31,8 +31,6 @@ static char sccsid[] = "@(#)rpc_dtablesize.c 1.2 87/08/11 Copyr 1987 Sun Micro"; #endif -#define getdtablesize __getdtablesize - #define __FORCE_GLIBC #define __USE_BSD #include <features.h> @@ -40,12 +38,15 @@ static char sccsid[] = "@(#)rpc_dtablesize.c 1.2 87/08/11 Copyr 1987 Sun Micro"; #include <unistd.h> #include <rpc/clnt.h> +libc_hidden_proto(getdtablesize) + /* * Cache the result of getdtablesize(), so we don't have to do an * expensive system call every time. */ -int attribute_hidden -_rpc_dtablesize_internal (void) +libc_hidden_proto(_rpc_dtablesize) +int +_rpc_dtablesize(void) { static int size; @@ -54,4 +55,4 @@ _rpc_dtablesize_internal (void) return size; } -strong_alias(_rpc_dtablesize_internal,_rpc_dtablesize) +libc_hidden_def(_rpc_dtablesize) |