summaryrefslogtreecommitdiffstats
path: root/roff.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2018-12-12 21:54:35 +0000
committerIngo Schwarze <schwarze@openbsd.org>2018-12-12 21:54:35 +0000
commit417f9b830578cb78d80fbbf1a605502b9022cb2e (patch)
tree8095e006e24fc5e237b30b05b7e12740829406d3 /roff.c
parent5520315a8e50a0b8a702d84c2780faf9b0b187ec (diff)
downloadmandoc-417f9b830578cb78d80fbbf1a605502b9022cb2e.tar.gz
Cleanup, no functional change:
No need to expose the tbl(7) syntax tree data structures everywhere. Move them to their own include file, "tbl.h", and improve comments.
Diffstat (limited to 'roff.c')
-rw-r--r--roff.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/roff.c b/roff.c
index 5810afbe..98902a43 100644
--- a/roff.c
+++ b/roff.c
@@ -28,10 +28,11 @@
#include <stdlib.h>
#include <string.h>
-#include "mandoc.h"
#include "mandoc_aux.h"
#include "mandoc_ohash.h"
+#include "mandoc.h"
#include "roff.h"
+#include "tbl.h"
#include "libmandoc.h"
#include "roff_int.h"
#include "libroff.h"