aboutsummaryrefslogtreecommitdiff
path: root/puzzles.h
diff options
context:
space:
mode:
authorSimon Tatham <anakin@pobox.com>2018-11-13 21:31:32 +0000
committerSimon Tatham <anakin@pobox.com>2018-11-13 21:31:32 +0000
commit0f77798ae24d2152c5393f01e55e0168c564ee0d (patch)
treebd0f5392c8272765517899f76fb365634b537959 /puzzles.h
parentb732fda2cf611b6f67c68e3a26077897afe41741 (diff)
downloadpuzzles-0f77798ae24d2152c5393f01e55e0168c564ee0d.zip
puzzles-0f77798ae24d2152c5393f01e55e0168c564ee0d.tar.gz
puzzles-0f77798ae24d2152c5393f01e55e0168c564ee0d.tar.bz2
puzzles-0f77798ae24d2152c5393f01e55e0168c564ee0d.tar.xz
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.
Diffstat (limited to 'puzzles.h')
-rw-r--r--puzzles.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/puzzles.h b/puzzles.h
index 2eb7647..e36c6c6 100644
--- 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