summaryrefslogtreecommitdiff
path: root/usr.bin/mandoc/man.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@cvs.openbsd.org>2009-10-19 10:20:25 +0000
committerIngo Schwarze <schwarze@cvs.openbsd.org>2009-10-19 10:20:25 +0000
commit13406a4edf372338e2bb8a79abbf0802e3354e00 (patch)
tree857de1b547ca86883e850fd6e0b22d0474b17a60 /usr.bin/mandoc/man.c
parent6ee61327dd569b7e4f4f1e781e0ba3afd1424563 (diff)
sync to 1.9.6: u_char lives in <sys/types.h>
noticed by uqs at spoerlein dot net on FreeBSD, where <stdlib.h> does not include <sys/types.h>
Diffstat (limited to 'usr.bin/mandoc/man.c')
-rw-r--r--usr.bin/mandoc/man.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.bin/mandoc/man.c b/usr.bin/mandoc/man.c
index d749a73eff3..85a8dbfd6a6 100644
--- a/usr.bin/mandoc/man.c
+++ b/usr.bin/mandoc/man.c
@@ -1,4 +1,4 @@
-/* $Id: man.c,v 1.13 2009/09/21 21:11:37 schwarze Exp $ */
+/* $Id: man.c,v 1.14 2009/10/19 10:20:24 schwarze Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -14,6 +14,8 @@
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
+#include <sys/types.h>
+
#include <assert.h>
#include <ctype.h>
#include <stdarg.h>