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_output.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_output.c')
| -rw-r--r-- | sys/netinet/ip_output.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/netinet/ip_output.c b/sys/netinet/ip_output.c index 3c30b4ad900..be3c4403aca 100644 --- a/sys/netinet/ip_output.c +++ b/sys/netinet/ip_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ip_output.c,v 1.142 2002/03/14 01:27:11 millert Exp $ */ +/* $OpenBSD: ip_output.c,v 1.143 2002/03/15 18:19:52 millert Exp $ */ /* $NetBSD: ip_output.c,v 1.28 1996/02/13 23:43:07 christos Exp $ */ /* @@ -97,13 +97,7 @@ static void ip_mloopback(struct ifnet *, struct mbuf *, struct sockaddr_in *); * The mbuf opt, if present, will not be freed. */ int -#if __STDC__ ip_output(struct mbuf *m0, ...) -#else -ip_output(m0, va_alist) - struct mbuf *m0; - va_dcl -#endif { register struct ip *ip, *mhip; register struct ifnet *ifp; |
