Module Name:    src
Committed By:   martin
Date:           Sun Nov 27 10:31:13 UTC 2011

Modified Files:
        src/sys/sys: systm.h

Log Message:
If not kernel, include <stdbool.h>


To generate a diff of this commit:
cvs rdiff -u -r1.254 -r1.255 src/sys/sys/systm.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/sys/systm.h
diff -u src/sys/sys/systm.h:1.254 src/sys/sys/systm.h:1.255
--- src/sys/sys/systm.h:1.254	Sun Nov 27 03:52:38 2011
+++ src/sys/sys/systm.h	Sun Nov 27 10:31:12 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: systm.h,v 1.254 2011/11/27 03:52:38 jakllsch Exp $	*/
+/*	$NetBSD: systm.h,v 1.255 2011/11/27 10:31:12 martin Exp $	*/
 
 /*-
  * Copyright (c) 1982, 1988, 1991, 1993
@@ -43,6 +43,9 @@
 #include "opt_ddb.h"
 #include "opt_multiprocessor.h"
 #endif
+#ifndef _KERNEL
+#include <stdbool.h>
+#endif
 
 #include <machine/endian.h>
 

Reply via email to