diff options
Diffstat (limited to 'sys/net')
-rw-r--r-- | sys/net/if_spppsubr.c | 4 | ||||
-rw-r--r-- | sys/net/pf_osfp.c | 4 | ||||
-rw-r--r-- | sys/net/raw_usrreq.c | 4 | ||||
-rw-r--r-- | sys/net/rtsock.c | 4 |
4 files changed, 8 insertions, 8 deletions
diff --git a/sys/net/if_spppsubr.c b/sys/net/if_spppsubr.c index 3076cd69c21..c793012301a 100644 --- a/sys/net/if_spppsubr.c +++ b/sys/net/if_spppsubr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: if_spppsubr.c,v 1.18 2003/05/06 07:28:39 deraadt Exp $ */ +/* $OpenBSD: if_spppsubr.c,v 1.19 2004/01/03 14:08:53 espie Exp $ */ /* * Synchronous PPP/Cisco link level subroutines. * Keepalive protocol implemented in both Cisco and PPP modes. @@ -77,7 +77,7 @@ #if defined (__NetBSD__) || defined (__OpenBSD__) #include <machine/cpu.h> /* XXX for softnet */ #endif -#include <machine/stdarg.h> +#include <sys/stdarg.h> #ifdef INET #include <netinet/in.h> diff --git a/sys/net/pf_osfp.c b/sys/net/pf_osfp.c index 08b29c72da0..52d9058fe35 100644 --- a/sys/net/pf_osfp.c +++ b/sys/net/pf_osfp.c @@ -1,4 +1,4 @@ -/* $OpenBSD: pf_osfp.c,v 1.5 2003/12/19 20:09:01 dhartmei Exp $ */ +/* $OpenBSD: pf_osfp.c,v 1.6 2004/01/03 14:08:53 espie Exp $ */ /* * Copyright (c) 2003 Mike Frantzen <frantzen@w4g.org> @@ -56,7 +56,7 @@ typedef struct pool pool_t; # define pool_init(pool, size, a, ao, f, m, p) (*(pool)) = (size) # ifdef PFDEBUG -# include <stdarg.h> +# include <sys/stdarg.h> # define DPFPRINTF(format, x...) fprintf(stderr, format , ##x) # else # define DPFPRINTF(format, x...) ((void)0) diff --git a/sys/net/raw_usrreq.c b/sys/net/raw_usrreq.c index 357e53c3fe5..039a3a06133 100644 --- a/sys/net/raw_usrreq.c +++ b/sys/net/raw_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: raw_usrreq.c,v 1.9 2003/12/10 07:22:42 itojun Exp $ */ +/* $OpenBSD: raw_usrreq.c,v 1.10 2004/01/03 14:08:53 espie Exp $ */ /* $NetBSD: raw_usrreq.c,v 1.11 1996/02/13 22:00:43 christos Exp $ */ /* @@ -46,7 +46,7 @@ #include <net/netisr.h> #include <net/raw_cb.h> -#include <machine/stdarg.h> +#include <sys/stdarg.h> /* * Initialize raw connection block q. */ diff --git a/sys/net/rtsock.c b/sys/net/rtsock.c index 6b558ce5383..b8c07b9ef60 100644 --- a/sys/net/rtsock.c +++ b/sys/net/rtsock.c @@ -1,4 +1,4 @@ -/* $OpenBSD: rtsock.c,v 1.33 2003/12/10 07:22:42 itojun Exp $ */ +/* $OpenBSD: rtsock.c,v 1.34 2004/01/03 14:08:53 espie Exp $ */ /* $NetBSD: rtsock.c,v 1.18 1996/03/29 00:32:10 cgd Exp $ */ /* @@ -77,7 +77,7 @@ #include <net/route.h> #include <net/raw_cb.h> -#include <machine/stdarg.h> +#include <sys/stdarg.h> struct sockaddr route_dst = { 2, PF_ROUTE, }; struct sockaddr route_src = { 2, PF_ROUTE, }; |