aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tag.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-08-29 15:28:13 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-08-29 15:28:13 +0000
commite10fb76652b9cc35644e6b086baccec5273fbf2e (patch)
treee694dd2a47665b2b5f00187cc0c068c31525de75 /tag.c
parentf5beb1d89fc26a2088ce55e8eff2ef03e18475f0 (diff)
downloadmandoc-e10fb76652b9cc35644e6b086baccec5273fbf2e.tar.gz
mandoc-e10fb76652b9cc35644e6b086baccec5273fbf2e.tar.zst
mandoc-e10fb76652b9cc35644e6b086baccec5273fbf2e.zip
Including <ohash.h> requires including <stdint.h> before,
and "config.h" was missing as well. Patch from Svyatoslav Mishyn <juef and openmailbox dot org>, Crux Linux.
Diffstat (limited to 'tag.c')
-rw-r--r--tag.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/tag.c b/tag.c
index 3b3de023..4167336f 100644
--- a/tag.c
+++ b/tag.c
@@ -1,4 +1,4 @@
-/* $Id: tag.c,v 1.6 2015/07/28 18:38:55 schwarze Exp $ */
+/* $Id: tag.c,v 1.7 2015/08/29 15:28:13 schwarze Exp $ */
/*
* Copyright (c) 2015 Ingo Schwarze <schwarze@openbsd.org>
*
@@ -14,10 +14,13 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#include "config.h"
+
#include <sys/types.h>
#include <signal.h>
#include <stddef.h>
+#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>