diff options
author | 2002-03-15 18:19:52 +0000 | |
---|---|---|
committer | 2002-03-15 18:19:52 +0000 | |
commit | 28afbff99ec10f63540b43942c680ec7abbf823d (patch) | |
tree | 5a63b85b7a06f31bd641e6093f7566373a3534aa /sys/netiso/clnp_input.c | |
parent | Kill some #if __STDC__ used with 8bit function args; we live in an ANSI world (diff) | |
download | wireguard-openbsd-28afbff99ec10f63540b43942c680ec7abbf823d.tar.xz wireguard-openbsd-28afbff99ec10f63540b43942c680ec7abbf823d.zip |
Kill #if __STDC__ used to do K&R vs. ANSI varargs/stdarg; just do things
the ANSI way.
Diffstat (limited to 'sys/netiso/clnp_input.c')
-rw-r--r-- | sys/netiso/clnp_input.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/netiso/clnp_input.c b/sys/netiso/clnp_input.c index a184970f06b..20ce571e4cd 100644 --- a/sys/netiso/clnp_input.c +++ b/sys/netiso/clnp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clnp_input.c,v 1.3 1996/04/21 22:29:13 deraadt Exp $ */ +/* $OpenBSD: clnp_input.c,v 1.4 2002/03/15 18:19:53 millert Exp $ */ /* $NetBSD: clnp_input.c,v 1.12 1996/04/13 01:34:26 cgd Exp $ */ /*- @@ -287,13 +287,7 @@ next: * will it be correctly aligned? */ void -#if __STDC__ clnp_input(struct mbuf *m, ...) -#else -clnp_input(m, va_alist) - struct mbuf *m; /* ptr to first mbuf of pkt */ - va_dcl -#endif { struct snpa_hdr *shp; /* subnetwork header */ register struct clnp_fixed *clnp; /* ptr to fixed part of |