summaryrefslogtreecommitdiffstats
path: root/sys/netns/ns_output.c
diff options
context:
space:
mode:
authormillert <millert@openbsd.org>2002-03-15 18:19:52 +0000
committermillert <millert@openbsd.org>2002-03-15 18:19:52 +0000
commit28afbff99ec10f63540b43942c680ec7abbf823d (patch)
tree5a63b85b7a06f31bd641e6093f7566373a3534aa /sys/netns/ns_output.c
parentKill some #if __STDC__ used with 8bit function args; we live in an ANSI world (diff)
downloadwireguard-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/netns/ns_output.c')
-rw-r--r--sys/netns/ns_output.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/sys/netns/ns_output.c b/sys/netns/ns_output.c
index fe5c1320674..3bfea9f656c 100644
--- a/sys/netns/ns_output.c
+++ b/sys/netns/ns_output.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: ns_output.c,v 1.2 1996/03/04 08:20:28 niklas Exp $ */
+/* $OpenBSD: ns_output.c,v 1.3 2002/03/15 18:19:53 millert Exp $ */
/* $NetBSD: ns_output.c,v 1.8 1996/02/13 22:14:01 christos Exp $ */
/*
@@ -61,13 +61,7 @@ int ns_output_cnt = 0;
struct mbuf *ns_lastout;
int
-#if __STDC__
ns_output(struct mbuf *m0, ...)
-#else
-ns_output(m0, va_alist)
- struct mbuf *m0;
- va_dcl
-#endif
{
struct route *ro;
int flags;