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/clnp_output.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/clnp_output.c')
-rw-r--r-- | sys/netiso/clnp_output.c | 8 |
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/netiso/clnp_output.c b/sys/netiso/clnp_output.c index a07d80a03c7..b1fb89f5365 100644 --- a/sys/netiso/clnp_output.c +++ b/sys/netiso/clnp_output.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clnp_output.c,v 1.3 1996/04/21 22:29:16 deraadt Exp $ */ +/* $OpenBSD: clnp_output.c,v 1.4 2002/03/15 18:19:53 millert Exp $ */ /* $NetBSD: clnp_output.c,v 1.9 1996/04/13 01:34:32 cgd Exp $ */ /*- @@ -181,13 +181,7 @@ int clnp_id = 0; /* id for segmented dgrams */ * iso_addrmatch1. */ int -#if __STDC__ clnp_output(struct mbuf *m0, ...) -#else -clnp_output(m0, va_alist) - struct mbuf *m0; /* data for the packet */ - va_dcl -#endif { struct isopcb *isop; /* iso pcb */ int datalen;/* number of bytes of data in m0 */ |