summaryrefslogtreecommitdiff
path: root/sys/netipx/ipx_usrreq.c
diff options
context:
space:
mode:
authorTodd C. Miller <millert@cvs.openbsd.org>2002-03-15 18:19:54 +0000
committerTodd C. Miller <millert@cvs.openbsd.org>2002-03-15 18:19:54 +0000
commitde0519636e72969a9359cf27a32e00375235e343 (patch)
tree3670fa3ad7bf3bf88d6e1ab3add73f82987d555e /sys/netipx/ipx_usrreq.c
parente018051dbb8764df0d8660f8e0e82fa3eaefb0c4 (diff)
Kill #if __STDC__ used to do K&R vs. ANSI varargs/stdarg; just do things
the ANSI way.
Diffstat (limited to 'sys/netipx/ipx_usrreq.c')
-rw-r--r--sys/netipx/ipx_usrreq.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/sys/netipx/ipx_usrreq.c b/sys/netipx/ipx_usrreq.c
index 4f5e6622d1e..7163256faaa 100644
--- a/sys/netipx/ipx_usrreq.c
+++ b/sys/netipx/ipx_usrreq.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ipx_usrreq.c,v 1.10 2001/11/06 19:53:21 miod Exp $ */
+/* $OpenBSD: ipx_usrreq.c,v 1.11 2002/03/15 18:19:53 millert Exp $ */
/*-
*
@@ -81,13 +81,7 @@ int ipx_recvspace = IPXRCVQ;
* This may also be called for raw listeners.
*/
void
-#if __STDC__
ipx_input(struct mbuf *m, ...)
-#else
-ipx_input(m, va_alist)
- struct mbuf *m;
- va_decl
-#endif
{
register struct ipxpcb *ipxp;
register struct ipx *ipx = mtod(m, struct ipx *);
@@ -172,13 +166,7 @@ ipx_drop(ipxp, errno)
}
int
-#if __STDC__
ipx_output(struct mbuf *m0, ...)
-#else
-ipx_output(m0, va_alist)
- struct mbuf *m0;
- va_decl
-#endif
{
register struct mbuf *m;
register struct ipx *ipx;