diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2015-04-18 17:50:03 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2015-04-18 17:50:03 +0000 |
commit | a15dfcc7862a97d34cf8fed2bb1292c14721e771 (patch) | |
tree | 4578084e679ae306e5071615de9f1293078f08fc /usr.bin/mandoc/mdoc.h | |
parent | 4ecbeb26f11905d17a91ae50bb0f510f59332c8b (diff) |
Delete the wrapper functions mdoc_meta(), man_meta(), mdoc_node(),
man_node() from the mandoc(3) semi-public interface and the internal
wrapper functions print_mdoc() and print_man() from the HTML formatters.
Minus 60 lines of code, no functional change.
Diffstat (limited to 'usr.bin/mandoc/mdoc.h')
-rw-r--r-- | usr.bin/mandoc/mdoc.h | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/usr.bin/mandoc/mdoc.h b/usr.bin/mandoc/mdoc.h index 9527cc53154..5f773453645 100644 --- a/usr.bin/mandoc/mdoc.h +++ b/usr.bin/mandoc/mdoc.h @@ -1,4 +1,4 @@ -/* $OpenBSD: mdoc.h,v 1.65 2015/04/18 16:04:40 schwarze Exp $ */ +/* $OpenBSD: mdoc.h,v 1.66 2015/04/18 17:50:02 schwarze Exp $ */ /* * Copyright (c) 2008, 2009, 2010, 2011 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2014, 2015 Ingo Schwarze <schwarze@openbsd.org> @@ -284,8 +284,6 @@ __BEGIN_DECLS struct roff_man; -const struct roff_node *mdoc_node(const struct roff_man *); -const struct roff_meta *mdoc_meta(const struct roff_man *); void mdoc_deroff(char **, const struct roff_node *); __END_DECLS |