diff options
author | 2002-03-15 18:19:52 +0000 | |
---|---|---|
committer | 2002-03-15 18:19:52 +0000 | |
commit | 28afbff99ec10f63540b43942c680ec7abbf823d (patch) | |
tree | 5a63b85b7a06f31bd641e6093f7566373a3534aa /sys/netiso/tp_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/netiso/tp_input.c')
-rw-r--r-- | sys/netiso/tp_input.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/netiso/tp_input.c b/sys/netiso/tp_input.c index 1702a4dbc9f..d7c1c1655e7 100644 --- a/sys/netiso/tp_input.c +++ b/sys/netiso/tp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tp_input.c,v 1.4 2002/03/14 01:27:12 millert Exp $ */ +/* $OpenBSD: tp_input.c,v 1.5 2002/03/15 18:19:53 millert Exp $ */ /* $NetBSD: tp_input.c,v 1.9 1996/03/16 23:13:51 christos Exp $ */ /*- @@ -418,13 +418,7 @@ ok: * reasonable minimum. */ void -#if __STDC__ tp_input(struct mbuf *m, ...) -#else -tp_input(m, va_alist) - struct mbuf *m; - va_dcl -#endif { struct sockaddr *faddr, *laddr; /* NSAP addresses */ caddr_t cons_channel; |