diff options
author | 2018-12-12 21:54:30 +0000 | |
---|---|---|
committer | 2018-12-12 21:54:30 +0000 | |
commit | fae2491ec88c8a23fb3f33c877451dff511680f1 (patch) | |
tree | 9c84724971b5909d1caf4c5ef21d39749746bebb /usr.bin/mandoc/roff.c | |
parent | remove unused prototypes (diff) | |
download | wireguard-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.c | 5 |
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" |