summaryrefslogtreecommitdiffstats
path: root/sys/netiso/tp_input.c
diff options
context:
space:
mode:
authorespie <espie@openbsd.org>2004-01-03 14:08:52 +0000
committerespie <espie@openbsd.org>2004-01-03 14:08:52 +0000
commit7034f964200210b046bd85f3226a5779a20054e6 (patch)
treee7e619472ec44496184e787b6aef3f1d9aeb4111 /sys/netiso/tp_input.c
parentcope with changed imsg_read semantics (diff)
downloadwireguard-openbsd-7034f964200210b046bd85f3226a5779a20054e6.tar.xz
wireguard-openbsd-7034f964200210b046bd85f3226a5779a20054e6.zip
put an mi wrapper around stdarg.h/varargs.h. gcc3 moved stdarg/varargs macros
to built-ins, so eventually we will have one version of these files. Special adjustments for the kernel to cope: machine/stdarg.h -> sys/stdarg.h and machine/ansi.h needs to have a _BSD_VA_LIST_ for syslog* prototypes. okay millert@, drahn@, miod@.
Diffstat (limited to 'sys/netiso/tp_input.c')
-rw-r--r--sys/netiso/tp_input.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netiso/tp_input.c b/sys/netiso/tp_input.c
index ecc198b9a34..de376b60604 100644
--- a/sys/netiso/tp_input.c
+++ b/sys/netiso/tp_input.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tp_input.c,v 1.7 2003/12/10 07:22:44 itojun Exp $ */
+/* $OpenBSD: tp_input.c,v 1.8 2004/01/03 14:08:54 espie Exp $ */
/* $NetBSD: tp_input.c,v 1.9 1996/03/16 23:13:51 christos Exp $ */
/*-
@@ -113,7 +113,7 @@ SOFTWARE.
#include <netccitt/pk.h>
#include <netccitt/pk_var.h>
-#include <machine/stdarg.h>
+#include <sys/stdarg.h>
static struct socket *tp_newsocket(struct socket *, struct sockaddr *,
caddr_t, u_int, u_int);