diff options
author | 1999-07-13 21:57:42 +0000 | |
---|---|---|
committer | 1999-07-13 21:57:42 +0000 | |
commit | d19579df4a90813ecd24c6170b314a9f91c06054 (patch) | |
tree | 709d310dc27f20d4ae97309fa41232fa3f73b0a8 /sys/netinet/tcp_input.c | |
parent | delete pointer to ibcs2-setup.. no such thing; d@ (diff) | |
download | wireguard-openbsd-d19579df4a90813ecd24c6170b314a9f91c06054.tar.xz wireguard-openbsd-d19579df4a90813ecd24c6170b314a9f91c06054.zip |
correct non-STDC case
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 9674066c544..6ad3623a7ee 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tcp_input.c,v 1.40 1999/07/06 20:17:52 cmetz Exp $ */ +/* $OpenBSD: tcp_input.c,v 1.41 1999/07/13 21:57:42 deraadt Exp $ */ /* $NetBSD: tcp_input.c,v 1.23 1996/02/13 23:43:44 christos Exp $ */ /* @@ -313,6 +313,7 @@ tcp_input(struct mbuf *m, ...) #else tcp_input(m, va_alist) register struct mbuf *m; + va_dcl #endif { register struct inpcb *inp; |