summaryrefslogtreecommitdiff
path: root/usr.bin/mandoc
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@cvs.openbsd.org>2015-08-29 15:28:20 +0000
committerIngo Schwarze <schwarze@cvs.openbsd.org>2015-08-29 15:28:20 +0000
commitf8c31e9a257f24c806575920c85ec1b608bfd606 (patch)
treeed13fad184b2081b53dd7a9c0cca1f0da31acb21 /usr.bin/mandoc
parent2a6e22c5968339f0530a3a149092504633cb54ec (diff)
Portability: including <ohash.h> requires including <stdint.h> before.
Noticed by Svyatoslav Mishyn <juef and openmailbox dot org>, Crux Linux.
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 1bf7cdbdf84..30237d1c835 100644
--- a/usr.bin/mandoc/tag.c
+++ b/usr.bin/mandoc/tag.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: tag.c,v 1.6 2015/07/28 18:38:05 schwarze Exp $ */
+/* $OpenBSD: tag.c,v 1.7 2015/08/29 15:28:19 schwarze Exp $ */
/*
* Copyright (c) 2015 Ingo Schwarze <schwarze@openbsd.org>
*
@@ -18,6 +18,7 @@
#include <signal.h>
#include <stddef.h>
+#include <stdint.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>