diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-07-13 21:57:43 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1999-07-13 21:57:43 +0000 |
commit | 8f1871270d687d64197c78161af331eebf21b260 (patch) | |
tree | f4a079085e908f505009b7f1ff4d95382672113d /sys | |
parent | 754acd603dcc18c28be65ad7474b596bb050a024 (diff) |
correct non-STDC case
Diffstat (limited to 'sys')
-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; |