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/idrp_usrreq.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/idrp_usrreq.c')
| -rw-r--r-- | sys/netiso/idrp_usrreq.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/sys/netiso/idrp_usrreq.c b/sys/netiso/idrp_usrreq.c index c050d256de2..89a39e700a6 100644 --- a/sys/netiso/idrp_usrreq.c +++ b/sys/netiso/idrp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: idrp_usrreq.c,v 1.2 1996/03/04 10:35:20 mickey Exp $ */ +/* $OpenBSD: idrp_usrreq.c,v 1.3 2002/03/15 18:19:53 millert Exp $ */ /* $NetBSD: idrp_usrreq.c,v 1.5 1996/02/13 22:09:33 christos Exp $ */ /* @@ -88,13 +88,7 @@ idrp_init() * No return value. */ void -#if __STDC__ idrp_input(struct mbuf *m, ...) -#else -idrp_input(m, va_alist) - struct mbuf *m; - va_dcl -#endif { struct sockaddr_iso *src, *dst; va_list ap; @@ -121,13 +115,7 @@ bad: m_freem(m); } int -#if __STDC__ idrp_output(struct mbuf *m, ...) -#else -idrp_output(m, va_alist) - struct mbuf *m; - va_dcl -#endif { struct mbuf *addr; register struct sockaddr_iso *siso; |
