diff options
author | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2018-12-13 05:13:16 +0000 |
---|---|---|
committer | Ingo Schwarze <schwarze@cvs.openbsd.org> | 2018-12-13 05:13:16 +0000 |
commit | 1789e8ed4cf7e787cf02a57f980465dad6edf2b9 (patch) | |
tree | d12df24dd8f8bfa7daaceae15e1b73b72e27b2d9 /usr.bin/mandoc/eqn_html.c | |
parent | 644676265aa660ec7fc96c007fa1ae698b0a78e0 (diff) |
Cleanup, no functional change:
No need to expose the eqn(7) syntax tree data structures everywhere.
Move them to their own include file, "eqn.h".
While here, delete the unused enum eqn_pilet.
Diffstat (limited to 'usr.bin/mandoc/eqn_html.c')
-rw-r--r-- | usr.bin/mandoc/eqn_html.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.bin/mandoc/eqn_html.c b/usr.bin/mandoc/eqn_html.c index a0d3ecb0296..60a894c44e4 100644 --- a/usr.bin/mandoc/eqn_html.c +++ b/usr.bin/mandoc/eqn_html.c @@ -1,4 +1,4 @@ -/* $OpenBSD: eqn_html.c,v 1.13 2017/07/14 13:32:27 schwarze Exp $ */ +/* $OpenBSD: eqn_html.c,v 1.14 2018/12/13 05:13:15 schwarze Exp $ */ /* * Copyright (c) 2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2017 Ingo Schwarze <schwarze@openbsd.org> @@ -24,6 +24,7 @@ #include <string.h> #include "mandoc.h" +#include "eqn.h" #include "out.h" #include "html.h" |