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.
This commit is contained in:
Simon Tatham
2018-11-13 21:31:32 +00:00
parent b732fda2cf
commit 0f77798ae2

View File

@ -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