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/cltp_usrreq.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/cltp_usrreq.c')
-rw-r--r-- | sys/netiso/cltp_usrreq.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/netiso/cltp_usrreq.c b/sys/netiso/cltp_usrreq.c index a6aa9606e75..0115b3ca50f 100644 --- a/sys/netiso/cltp_usrreq.c +++ b/sys/netiso/cltp_usrreq.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cltp_usrreq.c,v 1.6 2003/12/10 07:22:43 itojun Exp $ */ +/* $OpenBSD: cltp_usrreq.c,v 1.7 2004/01/03 14:08:54 espie Exp $ */ /* $NetBSD: cltp_usrreq.c,v 1.9 1996/02/13 22:08:59 christos Exp $ */ /* @@ -55,7 +55,7 @@ #include <netiso/tp_param.h> #include <netiso/tp_var.h> -#include <machine/stdarg.h> +#include <sys/stdarg.h> #endif |