diff options
author | Ingo Schwarze <schwarze@openbsd.org> | 2015-10-19 18:58:47 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@openbsd.org> | 2015-10-19 18:58:47 +0000 |
commit | 4c6457b5f1c34869decdbd6fb28b2755d203f3d9 (patch) | |
tree | dff65d759b0d91932a25adebb99abe87a44b94fd /mandoc_ohash.c | |
parent | 7458ebbfeabd0fc88f99200855485fe117765efe (diff) | |
download | mandoc-4c6457b5f1c34869decdbd6fb28b2755d203f3d9.tar.gz |
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.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mandoc_ohash.c b/mandoc_ohash.c index 7fd4b712..67127f3b 100644 --- a/mandoc_ohash.c +++ b/mandoc_ohash.c @@ -16,6 +16,7 @@ */ #include <sys/types.h> #include <stddef.h> +#include <stdint.h> #include <stdlib.h> #include "mandoc_aux.h" |