diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2020-04-03 10:29:02 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2020-04-03 10:29:02 +0000 |
commit | 45ef767ff4af4a0d4f95d159263e28a7410d06d9 (patch) | |
tree | 8843772a96602198e4dc9835d2177b93446375b3 /usr.bin/mandoc | |
parent | 96522b3eda5023468a7d590f6f339014747da79e (diff) |
#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.c | 3 |
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> |