Module Name: src
Committed By: dsl
Date: Thu Feb 20 18:14:11 UTC 2014
Modified Files:
src/sys/arch/x86/include: cpu.h
Log Message:
This needs stdint.h in userspace (for uint64_t)
To generate a diff of this commit:
cvs rdiff -u -r1.62 -r1.63 src/sys/arch/x86/include/cpu.h
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/x86/include/cpu.h
diff -u src/sys/arch/x86/include/cpu.h:1.62 src/sys/arch/x86/include/cpu.h:1.63
--- src/sys/arch/x86/include/cpu.h:1.62 Sat Feb 15 10:11:15 2014
+++ src/sys/arch/x86/include/cpu.h Thu Feb 20 18:14:11 2014
@@ -1,4 +1,4 @@
-/* $NetBSD: cpu.h,v 1.62 2014/02/15 10:11:15 dsl Exp $ */
+/* $NetBSD: cpu.h,v 1.63 2014/02/20 18:14:11 dsl Exp $ */
/*-
* Copyright (c) 1990 The Regents of the University of California.
@@ -40,6 +40,7 @@
#if defined(_KERNEL) || defined(_STANDALONE)
#include <sys/types.h>
#else
+#include <stdint.h>
#include <stdbool.h>
#endif /* _KERNEL || _STANDALONE */