summaryrefslogtreecommitdiff
path: root/lib/libc/rpc/svc_raw.c
diff options
context:
space:
mode:
authorThorsten Lockert <tholo@cvs.openbsd.org>1996-09-15 09:32:02 +0000
committerThorsten Lockert <tholo@cvs.openbsd.org>1996-09-15 09:32:02 +0000
commit5839b84db8fa4a49976868786c93b29df9c4d568 (patch)
treeef3d545e61baa18f319312ada4e97e2c799c24c6 /lib/libc/rpc/svc_raw.c
parent1d3f47d20a2b64c481a047ce24f39564b3e74533 (diff)
Remove dead code
Remove unused variables Silence some warnings lint(1) is your friend
Diffstat (limited to 'lib/libc/rpc/svc_raw.c')
-rw-r--r--lib/libc/rpc/svc_raw.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/libc/rpc/svc_raw.c b/lib/libc/rpc/svc_raw.c
index cc00ef7da82..512f911399a 100644
--- a/lib/libc/rpc/svc_raw.c
+++ b/lib/libc/rpc/svc_raw.c
@@ -28,7 +28,7 @@
*/
#if defined(LIBC_SCCS) && !defined(lint)
-static char *rcsid = "$OpenBSD: svc_raw.c,v 1.3 1996/08/19 08:31:54 tholo Exp $";
+static char *rcsid = "$OpenBSD: svc_raw.c,v 1.4 1996/09/15 09:31:39 tholo Exp $";
#endif /* LIBC_SCCS and not lint */
/*
@@ -95,6 +95,7 @@ svcraw_stat()
return (XPRT_IDLE);
}
+/* ARGSUSED */
static bool_t
svcraw_recv(xprt, msg)
SVCXPRT *xprt;
@@ -113,6 +114,7 @@ svcraw_recv(xprt, msg)
return (TRUE);
}
+/* ARGSUSED */
static bool_t
svcraw_reply(xprt, msg)
SVCXPRT *xprt;
@@ -132,6 +134,7 @@ svcraw_reply(xprt, msg)
return (TRUE);
}
+/* ARGSUSED */
static bool_t
svcraw_getargs(xprt, xdr_args, args_ptr)
SVCXPRT *xprt;
@@ -145,6 +148,7 @@ svcraw_getargs(xprt, xdr_args, args_ptr)
return ((*xdr_args)(&srp->xdr_stream, args_ptr));
}
+/* ARGSUSED */
static bool_t
svcraw_freeargs(xprt, xdr_args, args_ptr)
SVCXPRT *xprt;