summaryrefslogtreecommitdiffstats
path: root/usr.bin/mandoc/roff.c
diff options
context:
space:
mode:
authorschwarze <schwarze@openbsd.org>2018-12-12 21:54:30 +0000
committerschwarze <schwarze@openbsd.org>2018-12-12 21:54:30 +0000
commitfae2491ec88c8a23fb3f33c877451dff511680f1 (patch)
tree9c84724971b5909d1caf4c5ef21d39749746bebb /usr.bin/mandoc/roff.c
parentremove unused prototypes (diff)
downloadwireguard-openbsd-fae2491ec88c8a23fb3f33c877451dff511680f1.tar.xz
wireguard-openbsd-fae2491ec88c8a23fb3f33c877451dff511680f1.zip
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 'usr.bin/mandoc/roff.c')
-rw-r--r--usr.bin/mandoc/roff.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/mandoc/roff.c b/usr.bin/mandoc/roff.c
index 796c01fb4e1..a3ef67721e1 100644
--- a/usr.bin/mandoc/roff.c
+++ b/usr.bin/mandoc/roff.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: roff.c,v 1.216 2018/12/04 02:53:45 schwarze Exp $ */
+/* $OpenBSD: roff.c,v 1.217 2018/12/12 21:54:30 schwarze Exp $ */
/*
* Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2010-2015, 2017, 2018 Ingo Schwarze <schwarze@openbsd.org>
@@ -26,10 +26,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"