diff utils.h @ 183:4c3375895c6e

Don't use <stdbool.h> unless __STDC__ is large enough. Works around Solaris's broken environment.
author David A. Holland
date Fri, 12 Jun 2015 03:28:19 -0400
parents 4ea0ce804d22
children 1d2bad7151f9
line wrap: on
line diff
--- a/utils.h	Fri Jun 12 03:21:36 2015 -0400
+++ b/utils.h	Fri Jun 12 03:28:19 2015 -0400
@@ -27,8 +27,8 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <stdbool.h>
 #include <stddef.h>
+#include "bool.h"
 
 struct place;