diff options
author | 2014-12-21 00:17:24 +0000 | |
---|---|---|
committer | 2014-12-21 00:17:24 +0000 | |
commit | 637c94a3e7d99e6c213678e8021e9a2aff6428ce (patch) | |
tree | 284d0cd6e687eb659ff84e47c6a9a137531aaaf5 | |
parent | Replacing <machine/endian.h> with <sys/endian.h> does not imply removing (diff) | |
download | wireguard-openbsd-637c94a3e7d99e6c213678e8021e9a2aff6428ce.tar.xz wireguard-openbsd-637c94a3e7d99e6c213678e8021e9a2aff6428ce.zip |
Fix build with -Werror -std=c99 -pedantic.
ok schwarze@
-rw-r--r-- | usr.bin/mandoc/libmandoc.h | 3 | ||||
-rw-r--r-- | usr.bin/mandoc/msec.c | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/mandoc/libmandoc.h b/usr.bin/mandoc/libmandoc.h index 01358911568..ea6c9cbc19d 100644 --- a/usr.bin/mandoc/libmandoc.h +++ b/usr.bin/mandoc/libmandoc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: libmandoc.h,v 1.37 2014/12/01 08:05:02 schwarze Exp $ */ +/* $OpenBSD: libmandoc.h,v 1.38 2014/12/21 00:17:24 daniel Exp $ */ /* * Copyright (c) 2009, 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org> @@ -37,7 +37,6 @@ __BEGIN_DECLS struct mparse; struct mchars; -enum mandocerr; struct tbl_span; struct eqn; struct roff; diff --git a/usr.bin/mandoc/msec.c b/usr.bin/mandoc/msec.c index d9503216780..90a300e9020 100644 --- a/usr.bin/mandoc/msec.c +++ b/usr.bin/mandoc/msec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: msec.c,v 1.10 2014/12/01 08:05:02 schwarze Exp $ */ +/* $OpenBSD: msec.c,v 1.11 2014/12/21 00:17:24 daniel Exp $ */ /* * Copyright (c) 2009 Kristaps Dzonsons <kristaps@bsd.lv> * @@ -18,6 +18,7 @@ #include <string.h> +#include "mandoc.h" #include "libmandoc.h" #define LINE(x, y) \ |