ref: 0f77798ae24d2152c5393f01e55e0168c564ee0d
parent: b732fda2cf611b6f67c68e3a26077897afe41741
author: Simon Tatham <anakin@pobox.com>
date: Tue Nov 13 16:31:32 EST 2018
Add a #include of <stdbool.h>. This is the first commit in a series which will adopt C99 bool throughout the code base where it makes sense to do so.
--- a/puzzles.h
+++ b/puzzles.h
@@ -8,6 +8,7 @@
#include <stdio.h> /* for FILE */
#include <stdlib.h> /* for size_t */
#include <limits.h> /* for UINT_MAX */
+#include <stdbool.h>
#ifndef TRUE
#define TRUE 1