summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2020-04-03 10:30:09 +0000
committerIngo Schwarze <schwarze@openbsd.org>2020-04-03 10:30:09 +0000
commit608550debabeb1c4786e3dd2ad05d0f28e0556db (patch)
tree2180069d64b4024db8d80120546efdee818c8b4e
parentdc97ce56e26dda642ede91202db664ff13b2073d (diff)
downloadmandoc-608550debabeb1c4786e3dd2ad05d0f28e0556db.tar.gz
#include <stdint.h> because that is needed before #include <ohash.h>;
fixing a build failure of mandoc-portable on Arch Linux reported by Stephen Gregoratto <dev at sgregoratto dot me>.
-rw-r--r--tag.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/tag.c b/tag.c
index 82fc57f3..a7374d79 100644
--- a/tag.c
+++ b/tag.c
@@ -24,6 +24,7 @@
#include <assert.h>
#include <limits.h>
#include <stddef.h>
+#include <stdint.h>
#include <stdlib.h>
#include <string.h>