1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- #if 0
- static char sccsid[] = "@(#)rpc_dtablesize.c 1.2 87/08/11 Copyr 1987 Sun Micro";
- #endif
- #define __FORCE_GLIBC
- #define __USE_BSD
- #include <features.h>
- #include <unistd.h>
- #include <rpc/clnt.h>
- int
- _rpc_dtablesize(void)
- {
- static int size;
- if (size == 0)
- size = getdtablesize ();
- return size;
- }
- libc_hidden_def(_rpc_dtablesize)
|