Module Name:    src
Committed By:   martin
Date:           Sun Nov 27 11:07:22 UTC 2011

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

Log Message:
No <stdbool.h> if _STANDALONE


To generate a diff of this commit:
cvs rdiff -u -r1.255 -r1.256 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.255 src/sys/sys/systm.h:1.256
--- src/sys/sys/systm.h:1.255	Sun Nov 27 10:31:12 2011
+++ src/sys/sys/systm.h	Sun Nov 27 11:07:21 2011
@@ -1,4 +1,4 @@
-/*	$NetBSD: systm.h,v 1.255 2011/11/27 10:31:12 martin Exp $	*/
+/*	$NetBSD: systm.h,v 1.256 2011/11/27 11:07:21 martin Exp $	*/
 
 /*-
  * Copyright (c) 1982, 1988, 1991, 1993
@@ -43,7 +43,7 @@
 #include "opt_ddb.h"
 #include "opt_multiprocessor.h"
 #endif
-#ifndef _KERNEL
+#if !defined(_KERNEL) && !defined(_STANDALONE)
 #include <stdbool.h>
 #endif
 

Reply via email to