summaryrefslogtreecommitdiff
path: root/libc/inet/rpc/clnt_raw.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/inet/rpc/clnt_raw.c')
-rw-r--r--libc/inet/rpc/clnt_raw.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/libc/inet/rpc/clnt_raw.c b/libc/inet/rpc/clnt_raw.c
index 4c4c8251d..75dd98286 100644
--- a/libc/inet/rpc/clnt_raw.c
+++ b/libc/inet/rpc/clnt_raw.c
@@ -133,14 +133,9 @@ clntraw_create (u_long prog, u_long vers)
}
static enum clnt_stat
-clntraw_call (h, proc, xargs, argsp, xresults, resultsp, timeout)
- CLIENT *h;
- u_long proc;
- xdrproc_t xargs;
- caddr_t argsp;
- xdrproc_t xresults;
- caddr_t resultsp;
- struct timeval timeout attribute_unused;
+clntraw_call (CLIENT *h, u_long proc, xdrproc_t xargs, caddr_t argsp,
+ xdrproc_t xresults, caddr_t resultsp,
+ struct timeval timeout attribute_unused)
{
struct clntraw_private_s *clp = clntraw_private;
XDR *xdrs = &clp->xdr_stream;