diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2004-01-03 14:08:55 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2004-01-03 14:08:55 +0000 |
commit | f8086ce091549315cd470bcea8c56fa4ee438f1b (patch) | |
tree | d72e268347fd3adc8cb53eaf4269e281dd46ab47 /sys/netipx | |
parent | 31ec8d6d746e8bf365990ee271f1a77c3c1e3d0a (diff) |
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/netipx')
-rw-r--r-- | sys/netipx/ipx_ip.c | 4 | ||||
-rw-r--r-- | sys/netipx/ipx_usrreq.c | 4 | ||||
-rw-r--r-- | sys/netipx/spx_usrreq.c | 4 |
3 files changed, 6 insertions, 6 deletions
diff --git a/sys/netipx/ipx_ip.c b/sys/netipx/ipx_ip.c index 4b93b77df68..249e23e699b 100644 --- a/sys/netipx/ipx_ip.c +++ b/sys/netipx/ipx_ip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipx_ip.c,v 1.17 2003/12/10 07:22:43 itojun Exp $ */ +/* $OpenBSD: ipx_ip.c,v 1.18 2004/01/03 14:08:54 espie Exp $ */ /*- * @@ -71,7 +71,7 @@ #include <netipx/ipx_if.h> #include <netipx/ipx_ip.h> -#include <machine/stdarg.h> +#include <sys/stdarg.h> struct ifnet ipxipif; struct ifnet_en *ipxip_list; /* list of all hosts and gateways or broadcast addrs */ diff --git a/sys/netipx/ipx_usrreq.c b/sys/netipx/ipx_usrreq.c index f1a67bd7fb2..8e0db39f5af 100644 --- a/sys/netipx/ipx_usrreq.c +++ b/sys/netipx/ipx_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ipx_usrreq.c,v 1.13 2003/12/10 07:22:43 itojun Exp $ */ +/* $OpenBSD: ipx_usrreq.c,v 1.14 2004/01/03 14:08:54 espie Exp $ */ /*- * @@ -62,7 +62,7 @@ #include <netipx/ipx_var.h> #include <netipx/ipx_ip.h> -#include <machine/stdarg.h> +#include <sys/stdarg.h> /* * IPX protocol implementation. diff --git a/sys/netipx/spx_usrreq.c b/sys/netipx/spx_usrreq.c index b50f687dcf2..aaaa10f5bc1 100644 --- a/sys/netipx/spx_usrreq.c +++ b/sys/netipx/spx_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: spx_usrreq.c,v 1.22 2003/12/10 07:22:43 itojun Exp $ */ +/* $OpenBSD: spx_usrreq.c,v 1.23 2004/01/03 14:08:54 espie Exp $ */ /*- * @@ -55,7 +55,7 @@ #include <netipx/spx_var.h> #include <netipx/spx_debug.h> -#include <machine/stdarg.h> +#include <sys/stdarg.h> /* * SPX protocol implementation. |