summaryrefslogtreecommitdiffstats
path: root/usr.bin/mandoc/roff_html.c
diff options
context:
space:
mode:
authorschwarze <schwarze@openbsd.org>2018-12-13 11:55:14 +0000
committerschwarze <schwarze@openbsd.org>2018-12-13 11:55:14 +0000
commit99acaf1e5e2bb4b490dd3c7c4ff527b010a35fff (patch)
treeabe80332c00ecc4688f4771c6a34ad23022c7bde /usr.bin/mandoc/roff_html.c
parentfix printf statements when compiled with -DDEBUG. (diff)
downloadwireguard-openbsd-99acaf1e5e2bb4b490dd3c7c4ff527b010a35fff.tar.xz
wireguard-openbsd-99acaf1e5e2bb4b490dd3c7c4ff527b010a35fff.zip
Cleanup, no functional change:
Split the top level parser interface out of the utility header mandoc.h, into a new header mandoc_parse.h, for use in the main program and in the main parser only. Move enum mandoc_os into roff.h because struct roff_man is the place where it is stored. This allows removal of mandoc.h from seven files in low-level parsers and in formatters.
Diffstat (limited to 'usr.bin/mandoc/roff_html.c')
-rw-r--r--usr.bin/mandoc/roff_html.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/mandoc/roff_html.c b/usr.bin/mandoc/roff_html.c
index 8d57de5b3b9..cf3e198af15 100644
--- a/usr.bin/mandoc/roff_html.c
+++ b/usr.bin/mandoc/roff_html.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: roff_html.c,v 1.13 2018/12/03 16:17:58 schwarze Exp $ */
+/* $OpenBSD: roff_html.c,v 1.14 2018/12/13 11:55:14 schwarze Exp $ */
/*
* Copyright (c) 2010 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2014, 2017, 2018 Ingo Schwarze <schwarze@openbsd.org>
@@ -20,7 +20,6 @@
#include <assert.h>
#include <stddef.h>
-#include "mandoc.h"
#include "roff.h"
#include "out.h"
#include "html.h"