diff options
author | 2015-10-22 21:53:49 +0000 | |
---|---|---|
committer | 2015-10-22 21:53:49 +0000 | |
commit | b3cd4c9a6cb6d4dc6ca87606113161e83f49b53a (patch) | |
tree | a1dc5bd6354930fb5f3276efbf9c5fd05fbf43a3 /usr.bin/mandoc/man.h | |
parent | If no output device was allocated because no file wanted to produce output, (diff) | |
download | wireguard-openbsd-b3cd4c9a6cb6d4dc6ca87606113161e83f49b53a.tar.xz wireguard-openbsd-b3cd4c9a6cb6d4dc6ca87606113161e83f49b53a.zip |
move man(7) validation into the dedicated validation phase, too
Diffstat (limited to 'usr.bin/mandoc/man.h')
-rw-r--r-- | usr.bin/mandoc/man.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/mandoc/man.h b/usr.bin/mandoc/man.h index cbd15b0c8df..f3c8d3b7744 100644 --- a/usr.bin/mandoc/man.h +++ b/usr.bin/mandoc/man.h @@ -1,4 +1,4 @@ -/* $OpenBSD: man.h,v 1.55 2015/04/23 16:17:04 schwarze Exp $ */ +/* $OpenBSD: man.h,v 1.56 2015/10/22 21:53:49 schwarze Exp $ */ /* * Copyright (c) 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2014, 2015 Ingo Schwarze <schwarze@openbsd.org> @@ -63,6 +63,7 @@ __BEGIN_DECLS struct roff_man; -const struct mparse *man_mparse(const struct roff_man *); +const struct mparse *man_mparse(const struct roff_man *); +void man_validate(struct roff_man *); __END_DECLS |