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/tcp_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/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 1db524d661f..83f82f07335 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.108 2002/03/09 05:13:04 provos Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.109 2002/03/15 18:19:52 millert Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -386,12 +386,7 @@ tcp6_input(mp, offp, proto) * protocol specification dated September, 1981 very closely. */ void -#if __STDC__ tcp_input(struct mbuf *m, ...) -#else -tcp_input(m, va_alist) - struct mbuf *m; -#endif { struct ip *ip; struct inpcb *inp; |