summaryrefslogtreecommitdiffstats
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
commit453121ad053e69fd9505f77588a3e303c63fa382 (patch)
treed764b2793d471ded58fdf6bf683675d6d03191ea /tag.c
parente06815cf2f9dbd9bf79ed2d0e040a6314b963236 (diff)
downloadmandoc-453121ad053e69fd9505f77588a3e303c63fa382.tar.gz
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.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tag.c b/tag.c
index 4e2abd72..f65897f8 100644
--- a/tag.c
+++ b/tag.c
@@ -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>