aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/mandoc_ohash.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2015-10-19 18:58:47 +0000
committerIngo Schwarze <schwarze@openbsd.org>2015-10-19 18:58:47 +0000
commit26ab819e9713aaecfe378d583dc8cc395d5863af (patch)
treecf96dc5d558eb7f5724dbeb9aa5d0dd0ae3a72dd /mandoc_ohash.c
parentd15faae535d3d733f4ecad6a0e740a310a2ddfb9 (diff)
downloadmandoc-26ab819e9713aaecfe378d583dc8cc395d5863af.tar.gz
mandoc-26ab819e9713aaecfe378d583dc8cc395d5863af.tar.zst
mandoc-26ab819e9713aaecfe378d583dc8cc395d5863af.zip
including <ohash.h> requires including <stdint.h> beforehand;
noticed by Svyatoslav Mishyn <juef at openmailbox dot org>
Diffstat (limited to 'mandoc_ohash.c')
-rw-r--r--mandoc_ohash.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/mandoc_ohash.c b/mandoc_ohash.c
index a75599ef..0627b469 100644
--- a/mandoc_ohash.c
+++ b/mandoc_ohash.c
@@ -1,4 +1,4 @@
-/* $Id: mandoc_ohash.c,v 1.1 2015/10/13 15:53:05 schwarze Exp $ */
+/* $Id: mandoc_ohash.c,v 1.2 2015/10/19 18:58:47 schwarze Exp $ */
/*
* Copyright (c) 2014, 2015 Ingo Schwarze <schwarze@openbsd.org>
*
@@ -16,6 +16,7 @@
*/
#include <sys/types.h>
#include <stddef.h>
+#include <stdint.h>
#include <stdlib.h>
#include "mandoc_aux.h"