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/if_eon.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/if_eon.c')
-rw-r--r-- | sys/netiso/if_eon.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/netiso/if_eon.c b/sys/netiso/if_eon.c index 9e22247e001..3b97c1f4fd9 100644 --- a/sys/netiso/if_eon.c +++ b/sys/netiso/if_eon.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_eon.c,v 1.13 2001/06/27 03:49:54 angelos Exp $ */ +/* $OpenBSD: if_eon.c,v 1.14 2002/03/15 18:19:53 millert Exp $ */ /* $NetBSD: if_eon.c,v 1.15 1996/05/09 22:29:37 scottr Exp $ */ /*- @@ -447,13 +447,7 @@ flush: } void -#if __STDC__ eoninput(struct mbuf *m, ...) -#else -eoninput(m, va_alist) - struct mbuf *m; - va_dcl -#endif { int iphlen; register struct eon_hdr *eonhdr; |