diff options
author | 2004-01-03 14:08:52 +0000 | |
---|---|---|
committer | 2004-01-03 14:08:52 +0000 | |
commit | 7034f964200210b046bd85f3226a5779a20054e6 (patch) | |
tree | e7e619472ec44496184e787b6aef3f1d9aeb4111 /sys/netiso/clnp_input.c | |
parent | cope with changed imsg_read semantics (diff) | |
download | wireguard-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/clnp_input.c')
-rw-r--r-- | sys/netiso/clnp_input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netiso/clnp_input.c b/sys/netiso/clnp_input.c index 83e8fc32c15..c77d9c6947d 100644 --- a/sys/netiso/clnp_input.c +++ b/sys/netiso/clnp_input.c @@ -1,4 +1,4 @@ -/* $OpenBSD: clnp_input.c,v 1.7 2003/12/10 07:22:43 itojun Exp $ */ +/* $OpenBSD: clnp_input.c,v 1.8 2004/01/03 14:08:54 espie Exp $ */ /* $NetBSD: clnp_input.c,v 1.12 1996/04/13 01:34:26 cgd Exp $ */ /*- @@ -86,7 +86,7 @@ SOFTWARE. #include <netiso/clnp_stat.h> #include <netiso/argo_debug.h> -#include <machine/stdarg.h> +#include <sys/stdarg.h> #ifdef ISO u_char clnp_protox[ISOPROTO_MAX]; |