summaryrefslogtreecommitdiffstats
path: root/usr.bin/mandoc
diff options
context:
space:
mode:
authorschwarze <schwarze@openbsd.org>2020-04-03 10:29:01 +0000
committerschwarze <schwarze@openbsd.org>2020-04-03 10:29:01 +0000
commit24807e101686f493859a60b72f47e0eeee63ef72 (patch)
tree63f14c5ae1fc170e71be2cac631a9c6b7354b67d /usr.bin/mandoc
parentRevert "drm/dp_mst: Skip validating ports during destruction, just ref" (diff)
downloadwireguard-openbsd-24807e101686f493859a60b72f47e0eeee63ef72.tar.xz
wireguard-openbsd-24807e101686f493859a60b72f47e0eeee63ef72.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>.
Diffstat (limited to 'usr.bin/mandoc')
-rw-r--r--usr.bin/mandoc/tag.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/tag.c b/usr.bin/mandoc/tag.c
index 08f67662197..7de2616118c 100644
--- a/usr.bin/mandoc/tag.c
+++ b/usr.bin/mandoc/tag.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tag.c,v 1.31 2020/04/02 22:10:27 schwarze Exp $ */
+/* $OpenBSD: tag.c,v 1.32 2020/04/03 10:29:01 schwarze Exp $ */
/*
* Copyright (c) 2015,2016,2018,2019,2020 Ingo Schwarze <schwarze@openbsd.org>
*
@@ -22,6 +22,7 @@
#include <assert.h>
#include <limits.h>
#include <stddef.h>
+#include <stdint.h>
#include <stdlib.h>
#include <string.h>