aboutsummaryrefslogtreecommitdiffstatshomepage
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
commit2dc48867c481f09ce2be74a13a69776d8528efc1 (patch)
tree30e5fb424b8313e7f2499d498fece9fcf65e107c
parent4f3f1706132956d635c2c2cefb04b0418c6f0f18 (diff)
downloadmandoc-2dc48867c481f09ce2be74a13a69776d8528efc1.tar.gz
mandoc-2dc48867c481f09ce2be74a13a69776d8528efc1.tar.zst
mandoc-2dc48867c481f09ce2be74a13a69776d8528efc1.zip
#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.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/tag.c b/tag.c
index 6595c9d0..a52239b2 100644
--- a/tag.c
+++ b/tag.c
@@ -1,4 +1,4 @@
-/* $Id: tag.c,v 1.31 2020/04/02 22:12:55 schwarze Exp $ */
+/* $Id: tag.c,v 1.32 2020/04/03 10:30:09 schwarze Exp $ */
/*
* Copyright (c) 2015,2016,2018,2019,2020 Ingo Schwarze <schwarze@openbsd.org>
*
@@ -24,6 +24,7 @@
#include <assert.h>
#include <limits.h>
#include <stddef.h>
+#include <stdint.h>
#include <stdlib.h>
#include <string.h>