diff options
author | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-15 18:19:54 +0000 |
---|---|---|
committer | Todd C. Miller <millert@cvs.openbsd.org> | 2002-03-15 18:19:54 +0000 |
commit | de0519636e72969a9359cf27a32e00375235e343 (patch) | |
tree | 3670fa3ad7bf3bf88d6e1ab3add73f82987d555e /sys/netiso/tuba_subr.c | |
parent | e018051dbb8764df0d8660f8e0e82fa3eaefb0c4 (diff) |
Kill #if __STDC__ used to do K&R vs. ANSI varargs/stdarg; just do things
the ANSI way.
Diffstat (limited to 'sys/netiso/tuba_subr.c')
-rw-r--r-- | sys/netiso/tuba_subr.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/netiso/tuba_subr.c b/sys/netiso/tuba_subr.c index caa444ef8c2..d796e4d0ccf 100644 --- a/sys/netiso/tuba_subr.c +++ b/sys/netiso/tuba_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tuba_subr.c,v 1.10 2002/03/14 01:27:12 millert Exp $ */ +/* $OpenBSD: tuba_subr.c,v 1.11 2002/03/15 18:19:53 millert Exp $ */ /* $NetBSD: tuba_subr.c,v 1.7 1996/02/13 22:12:32 christos Exp $ */ /* @@ -255,13 +255,7 @@ tuba_pcbconnect(v, nam) * No return value. */ void -#if __STDC__ tuba_tcpinput(struct mbuf *m, ...) -#else -tuba_tcpinput(m, va_alist) - struct mbuf *m; /* ptr to first mbuf of pkt */ - va_dcl -#endif { unsigned long lindex, findex; register struct tcpiphdr *ti; |