diff options
Diffstat (limited to 'lib/libc/rpc/clnt_raw.c')
-rw-r--r-- | lib/libc/rpc/clnt_raw.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libc/rpc/clnt_raw.c b/lib/libc/rpc/clnt_raw.c index 04c911b6668..1359356755f 100644 --- a/lib/libc/rpc/clnt_raw.c +++ b/lib/libc/rpc/clnt_raw.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clnt_raw.c,v 1.14 2005/08/08 08:05:35 espie Exp $ */ +/* $OpenBSD: clnt_raw.c,v 1.15 2006/03/31 18:28:55 deraadt Exp $ */ /* * Sun RPC is a product of Sun Microsystems, Inc. and is provided for * unrestricted use provided that this legend is included on all tape @@ -198,6 +198,7 @@ call_again: return (status); } +/*ARGSUSED*/ static void clntraw_geterr(CLIENT *clnt, struct rpc_err *err) { @@ -220,17 +221,20 @@ clntraw_freeres(CLIENT *cl, xdrproc_t xdr_res, caddr_t res_ptr) return ((*xdr_res)(xdrs, res_ptr)); } +/*ARGSUSED*/ static void clntraw_abort(CLIENT *clnt) { } +/*ARGSUSED*/ static bool_t clntraw_control(CLIENT *clnt, u_int i, void *v) { return (FALSE); } +/*ARGSUSED*/ static void clntraw_destroy(CLIENT *clnt) { |