cmark

My personal build of CMark ✏️

Commit
6403a37913828f69de52ebabf33499ced848641d
Parent
b3a96dc9f5f8896ce3341da9029c844afb5c5209
Author
John MacFarlane <fiddlosopher@gmail.com>
Date

We don't need to include stdbool in the public header.

Diffstat

2 files changed, 1 insertion, 1 deletion

Status File Name N° Changes Insertions Deletions
Modified src/cmark.h 1 0 1
Modified src/main.c 1 1 0
diff --git a/src/cmark.h b/src/cmark.h
@@ -1,7 +1,6 @@
 #ifndef CMARK_H
 #define CMARK_H
 
-#include <stdbool.h>
 #include <stdio.h>
 #include "cmark_export.h"
 
diff --git a/src/main.c b/src/main.c
@@ -2,6 +2,7 @@
 #include <stdio.h>
 #include <string.h>
 #include <errno.h>
+#include <stdbool.h>
 #include "cmark.h"
 #include "debug.h"
 #include "bench.h"