diff options
author | Nick Wellnhofer <wellnhofer@aevum.de> | 2014-11-15 19:54:01 +0100 |
---|---|---|
committer | Nick Wellnhofer <wellnhofer@aevum.de> | 2014-11-16 21:31:56 +0100 |
commit | 76b7e4241c840480beaef5ac6b711301f066251e (patch) | |
tree | 04df5b2c9c0281db3c96ae44945e807d42d66bec /src/html/html.c | |
parent | 4dcdc715910b61a2b58f1ea8ae5f86d041e3c229 (diff) |
Probe for stdbool.h
Let cmake create a cmark_config.h file to deal with platforms missing
stdbool.h.
Diffstat (limited to 'src/html/html.c')
-rw-r--r-- | src/html/html.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/html/html.c b/src/html/html.c index faa570b..a0be6f2 100644 --- a/src/html/html.c +++ b/src/html/html.c @@ -1,9 +1,9 @@ #include <stdlib.h> #include <stdio.h> -#include <stdbool.h> #include <string.h> #include <assert.h> +#include "config.h" #include "cmark.h" #include "buffer.h" #include "ast.h" |