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/cltp_usrreq.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/cltp_usrreq.c')
-rw-r--r-- | sys/netiso/cltp_usrreq.c | 14 |
1 files changed, 1 insertions, 13 deletions
diff --git a/sys/netiso/cltp_usrreq.c b/sys/netiso/cltp_usrreq.c index 2be18dbdda0..5e1553cffc7 100644 --- a/sys/netiso/cltp_usrreq.c +++ b/sys/netiso/cltp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cltp_usrreq.c,v 1.2 1996/03/04 10:35:06 mickey Exp $ */ +/* $OpenBSD: cltp_usrreq.c,v 1.3 2002/03/15 18:19:53 millert Exp $ */ /* $NetBSD: cltp_usrreq.c,v 1.9 1996/02/13 22:08:59 christos Exp $ */ /* @@ -79,13 +79,7 @@ int cltp_cksum = 1; /* ARGUSED */ void -#if __STDC__ cltp_input(struct mbuf *m0, ...) -#else -cltp_input(m0, va_alist) - struct mbuf *m0; - va_dcl -#endif { struct sockaddr *srcsa, *dstsa; u_int cons_channel; @@ -222,13 +216,7 @@ cltp_ctlinput(cmd, sa, dummy) } int -#if __STDC__ cltp_output(struct mbuf *m, ...) -#else -cltp_output(m, va_alist) - struct mbuf *m; - va_dcl -#endif { register struct isopcb *isop; register int len; |