diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-01-14 19:22:44 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2006-01-14 19:22:44 +0000 |
commit | 9138bf01b3b21ce23cfdf15fce3f30bb9a1fbc61 (patch) | |
tree | fb0ac2208e1a080dfae3f2ca5f1f90f568bf4165 /libc/inet/rpc/svc_unix.c | |
parent | 6e3c1938ff129fb5385a963ec600111aa6228bdc (diff) | |
download | uClibc-alpine-9138bf01b3b21ce23cfdf15fce3f30bb9a1fbc61.tar.bz2 uClibc-alpine-9138bf01b3b21ce23cfdf15fce3f30bb9a1fbc61.tar.xz |
Merge from trunk.
Diffstat (limited to 'libc/inet/rpc/svc_unix.c')
-rw-r--r-- | libc/inet/rpc/svc_unix.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/libc/inet/rpc/svc_unix.c b/libc/inet/rpc/svc_unix.c index 95a65ad1f..d71485f0a 100644 --- a/libc/inet/rpc/svc_unix.c +++ b/libc/inet/rpc/svc_unix.c @@ -55,6 +55,7 @@ #define poll __poll #define accept __accept #define listen __listen +#define fputs __fputs #define __FORCE_GLIBC #include <features.h> @@ -263,7 +264,7 @@ makefd_xprt (int fd, u_int sendsize, u_int recvsize) } static bool_t -rendezvous_request (SVCXPRT *xprt, struct rpc_msg *errmsg) +rendezvous_request (SVCXPRT *xprt, struct rpc_msg *errmsg attribute_unused) { int sock; struct unix_rendezvous *r; @@ -292,7 +293,7 @@ again: } static enum xprt_stat -rendezvous_stat (SVCXPRT *xprt) +rendezvous_stat (SVCXPRT *xprt attribute_unused) { return XPRT_IDLE; } |