diff options
| author | Simon Tatham <anakin@pobox.com> | 2018-11-13 21:31:32 +0000 |
|---|---|---|
| committer | Simon Tatham <anakin@pobox.com> | 2018-11-13 21:31:32 +0000 |
| commit | 0f77798ae24d2152c5393f01e55e0168c564ee0d (patch) | |
| tree | bd0f5392c8272765517899f76fb365634b537959 /puzzles.h | |
| parent | b732fda2cf611b6f67c68e3a26077897afe41741 (diff) | |
| download | puzzles-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.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -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 |