Mercurial > ~dholland > hg > tradcpp > index.cgi
comparison directive.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 | a2f047301c15 |
children | 1d2bad7151f9 |
comparison
equal
deleted
inserted
replaced
182:f7814226906c | 183:4c3375895c6e |
---|---|
26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE | 26 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE |
27 * POSSIBILITY OF SUCH DAMAGE. | 27 * POSSIBILITY OF SUCH DAMAGE. |
28 */ | 28 */ |
29 | 29 |
30 #include <assert.h> | 30 #include <assert.h> |
31 #include <stdbool.h> | |
32 #include <stdlib.h> | 31 #include <stdlib.h> |
33 #include <string.h> | 32 #include <string.h> |
34 #include <limits.h> | 33 #include <limits.h> |
35 #include <errno.h> | 34 #include <errno.h> |
36 | 35 |
36 #include "bool.h" | |
37 #include "utils.h" | 37 #include "utils.h" |
38 #include "mode.h" | 38 #include "mode.h" |
39 #include "place.h" | 39 #include "place.h" |
40 #include "files.h" | 40 #include "files.h" |
41 #include "directive.h" | 41 #include "directive.h" |