diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2014-12-01 08:05:03 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2014-12-01 08:05:03 +0000 |
commit | ac86e73e9650b4db811737e770a15bc7cf4be406 (patch) | |
tree | 58cb1d3af437f2670bcdfae102c356416ad83782 /usr.bin/mandoc/libmandoc.h | |
parent | caade4c1f10e3d0c5156f58840496c3c654d7db6 (diff) |
header cleanup:
* add missing forward declarations
* remove needless header inclusions
* some style unification
Diffstat (limited to 'usr.bin/mandoc/libmandoc.h')
-rw-r--r-- | usr.bin/mandoc/libmandoc.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/usr.bin/mandoc/libmandoc.h b/usr.bin/mandoc/libmandoc.h index b3f3b550968..01358911568 100644 --- a/usr.bin/mandoc/libmandoc.h +++ b/usr.bin/mandoc/libmandoc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: libmandoc.h,v 1.36 2014/11/28 06:26:46 schwarze Exp $ */ +/* $OpenBSD: libmandoc.h,v 1.37 2014/12/01 08:05:02 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011, 2012 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org> @@ -35,6 +35,11 @@ struct buf { __BEGIN_DECLS +struct mparse; +struct mchars; +enum mandocerr; +struct tbl_span; +struct eqn; struct roff; struct mdoc; struct man; |