1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #define __FORCE_GLIBC__
- #include <features.h>
- #include <rpc/clnt.h>
- #include <unistd.h>
- int _rpc_dtablesize(void)
- {
- static int size;
- if (size == 0) {
- size = getdtablesize();
- }
- return (size);
- }
|