Module Name: src
Committed By: reinoud
Date: Wed May 22 13:34:32 UTC 2013
Modified Files:
src/sys/arch/usermode/usermode: thunk.c
Log Message:
Including missing include file <sys/ioctl.h> that broke compilation.
To generate a diff of this commit:
cvs rdiff -u -r1.82 -r1.83 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.82 src/sys/arch/usermode/usermode/thunk.c:1.83
--- src/sys/arch/usermode/usermode/thunk.c:1.82 Mon Jul 2 12:17:12 2012
+++ src/sys/arch/usermode/usermode/thunk.c Wed May 22 13:34:31 2013
@@ -1,4 +1,4 @@
-/* $NetBSD: thunk.c,v 1.82 2012/07/02 12:17:12 reinoud Exp $ */
+/* $NetBSD: thunk.c,v 1.83 2013/05/22 13:34:31 reinoud Exp $ */
/*-
* Copyright (c) 2011 Jared D. McNeill <[email protected]>
@@ -28,7 +28,7 @@
#include <sys/cdefs.h>
#ifdef __NetBSD__
-__RCSID("$NetBSD: thunk.c,v 1.82 2012/07/02 12:17:12 reinoud Exp $");
+__RCSID("$NetBSD: thunk.c,v 1.83 2013/05/22 13:34:31 reinoud Exp $");
#endif
#include <sys/types.h>
@@ -40,6 +40,7 @@ __RCSID("$NetBSD: thunk.c,v 1.82 2012/07
#include <sys/socket.h>
#include <sys/audioio.h>
#include <sys/shm.h>
+#include <sys/ioctl.h>
#include <machine/vmparam.h>
#include <net/if.h>