]> git.cameronkatri.com Git - mandoc.git/commitdiff
#include <stdint.h> because that is needed before #include <ohash.h>;
authorIngo Schwarze <schwarze@openbsd.org>
Fri, 3 Apr 2020 10:30:09 +0000 (10:30 +0000)
committerIngo Schwarze <schwarze@openbsd.org>
Fri, 3 Apr 2020 10:30:09 +0000 (10:30 +0000)
fixing a build failure of mandoc-portable on Arch Linux
reported by Stephen Gregoratto <dev at sgregoratto dot me>.

tag.c

diff --git a/tag.c b/tag.c
index 6595c9d09163cfdc3b165d7e4ceea3697b836e7b..a52239b2d46f78a17c2848e33c92e12343bb32ca 100644 (file)
--- 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>