comparison place.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 a2f047301c15
children 16b4451e34b8
comparison
equal deleted inserted replaced
182:f7814226906c 183:4c3375895c6e
28 */ 28 */
29 29
30 #ifndef PLACE_H 30 #ifndef PLACE_H
31 #define PLACE_H 31 #define PLACE_H
32 32
33 #include <stdbool.h> 33 #include "bool.h"
34 34
35 enum places { 35 enum places {
36 P_NOWHERE, 36 P_NOWHERE,
37 P_BUILTIN, 37 P_BUILTIN,
38 P_COMMANDLINE, 38 P_COMMANDLINE,