diff options
author | 2002-03-15 18:19:52 +0000 | |
---|---|---|
committer | 2002-03-15 18:19:52 +0000 | |
commit | 28afbff99ec10f63540b43942c680ec7abbf823d (patch) | |
tree | 5a63b85b7a06f31bd641e6093f7566373a3534aa /sys/netinet/ip_ether.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/netinet/ip_ether.c')
-rw-r--r-- | sys/netinet/ip_ether.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/netinet/ip_ether.c b/sys/netinet/ip_ether.c index 3dbbd91fd4d..11fd4a84637 100644 --- a/sys/netinet/ip_ether.c +++ b/sys/netinet/ip_ether.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_ether.c,v 1.36 2001/11/29 08:20:50 itojun Exp $ */ +/* $OpenBSD: ip_ether.c,v 1.37 2002/03/15 18:19:52 millert Exp $ */ /* * The author of this code is Angelos D. Keromytis (kermit@adk.gr) * @@ -74,13 +74,7 @@ struct etheripstat etheripstat; */ void -#if __STDC__ etherip_input(struct mbuf *m, ...) -#else -etherip_input(m, va_alist) - struct mbuf *m; - va_dcl -#endif { union sockaddr_union ssrc, sdst; struct ether_header eh; |