summaryrefslogtreecommitdiffstats
path: root/sys/lib/libsa/exit.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/lib/libsa/exit.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/lib/libsa/exit.c')
-rw-r--r--sys/lib/libsa/exit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/lib/libsa/exit.c b/sys/lib/libsa/exit.c
index db825baa9b4..6eb42fd31a5 100644
--- a/sys/lib/libsa/exit.c
+++ b/sys/lib/libsa/exit.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: exit.c,v 1.8 2003/08/11 06:23:09 deraadt Exp $ */
+/* $OpenBSD: exit.c,v 1.9 2004/01/03 14:08:53 espie Exp $ */
/* $NetBSD: exit.c,v 1.11 1996/12/01 20:22:19 pk Exp $ */
/*-
@@ -29,7 +29,7 @@
* POSSIBILITY OF SUCH DAMAGE.
*/
-#include <machine/stdarg.h>
+#include <sys/stdarg.h>
#include "stand.h"