diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2015-10-19 18:58:21 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2015-10-19 18:58:21 +0000 |
commit | ba4c24dd19af1cb887350846c01bc1e7e5f04f61 (patch) | |
tree | 286f15ec69a969d8c1c531e2f3e156502c470e2f /usr.bin/mandoc | |
parent | ee52efdcd8d0ed8cac1d0be8b9a10f0a72dfca41 (diff) |
including <ohash.h> requires including <stdint.h> beforehand;
noticed by Svyatoslav Mishyn <juef at openmailbox dot org>
Diffstat (limited to 'usr.bin/mandoc')
-rw-r--r-- | usr.bin/mandoc/mandoc_ohash.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/mandoc_ohash.c b/usr.bin/mandoc/mandoc_ohash.c index 464652acc59..0e01e359188 100644 --- a/usr.bin/mandoc/mandoc_ohash.c +++ b/usr.bin/mandoc/mandoc_ohash.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mandoc_ohash.c,v 1.1 2015/10/13 15:50:15 schwarze Exp $ */ +/* $OpenBSD: mandoc_ohash.c,v 1.2 2015/10/19 18:58:20 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" |