diff files.c @ 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 ffdb0b73856f
children 9637bf434f8e
line wrap: on
line diff
--- a/files.c	Fri Jun 12 03:21:36 2015 -0400
+++ b/files.c	Fri Jun 12 03:28:19 2015 -0400
@@ -27,7 +27,6 @@
  * POSSIBILITY OF SUCH DAMAGE.
  */
 
-#include <stdbool.h>
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
@@ -35,6 +34,7 @@
 #include <fcntl.h>
 #include <errno.h>
 
+#include "bool.h"
 #include "array.h"
 #include "mode.h"
 #include "place.h"