diff options
Diffstat (limited to 'libc/inet/rpc/svc_run.c')
-rw-r--r-- | libc/inet/rpc/svc_run.c | 17 |
1 files changed, 8 insertions, 9 deletions
diff --git a/libc/inet/rpc/svc_run.c b/libc/inet/rpc/svc_run.c index d2c06b895..50e5fcd79 100644 --- a/libc/inet/rpc/svc_run.c +++ b/libc/inet/rpc/svc_run.c @@ -31,15 +31,7 @@ * Wait for input, call server program. */ -#define svc_getreq_poll __svc_getreq_poll -#define poll __poll - -/* used by svc_[max_]pollfd */ -#define __rpc_thread_svc_pollfd __rpc_thread_svc_pollfd_internal -#define __rpc_thread_svc_max_pollfd __rpc_thread_svc_max_pollfd_internal - #define __FORCE_GLIBC -#define _GNU_SOURCE #include <features.h> #include <errno.h> @@ -47,6 +39,13 @@ #include <sys/poll.h> #include <rpc/rpc.h> +libc_hidden_proto(perror) +libc_hidden_proto(svc_getreq_poll) +libc_hidden_proto(poll) +/* used by svc_[max_]pollfd */ +libc_hidden_proto(__rpc_thread_svc_pollfd) +libc_hidden_proto(__rpc_thread_svc_max_pollfd) + /* This function can be used as a signal handler to terminate the server loop. */ void @@ -83,7 +82,7 @@ svc_run (void) free (my_pollfd); if (errno == EINTR) continue; - __perror (_("svc_run: - poll failed")); + perror (_("svc_run: - poll failed")); return; case 0: free (my_pollfd); |