Module Name:    src
Committed By:   reinoud
Date:           Mon Jul  2 12:17:12 UTC 2012

Modified Files:
        src/sys/arch/usermode/usermode: thunk.c

Log Message:
Fix missing <stdarg.h> include that breaks the autobuild


To generate a diff of this commit:
cvs rdiff -u -r1.81 -r1.82 src/sys/arch/usermode/usermode/thunk.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/arch/usermode/usermode/thunk.c
diff -u src/sys/arch/usermode/usermode/thunk.c:1.81 src/sys/arch/usermode/usermode/thunk.c:1.82
--- src/sys/arch/usermode/usermode/thunk.c:1.81	Sat Mar  3 21:15:16 2012
+++ src/sys/arch/usermode/usermode/thunk.c	Mon Jul  2 12:17:12 2012
@@ -1,4 +1,4 @@
-/* $NetBSD: thunk.c,v 1.81 2012/03/03 21:15:16 reinoud Exp $ */
+/* $NetBSD: thunk.c,v 1.82 2012/07/02 12:17:12 reinoud Exp $ */
 
 /*-
  * Copyright (c) 2011 Jared D. McNeill <jmcne...@invisible.ca>
@@ -28,11 +28,12 @@
 
 #include <sys/cdefs.h>
 #ifdef __NetBSD__
-__RCSID("$NetBSD: thunk.c,v 1.81 2012/03/03 21:15:16 reinoud Exp $");
+__RCSID("$NetBSD: thunk.c,v 1.82 2012/07/02 12:17:12 reinoud Exp $");
 #endif
 
 #include <sys/types.h>
 #include <sys/mman.h>
+#include <stdarg.h>
 #include <sys/reboot.h>
 #include <sys/poll.h>
 #include <sys/sysctl.h>

Reply via email to