diff options
author | 2014-12-01 08:05:02 +0000 | |
---|---|---|
committer | 2014-12-01 08:05:02 +0000 | |
commit | dd617d7660ceb41dbbd1a712806a45288e52a2cc (patch) | |
tree | b9dd3c502f6aff80855b53ddb3cce745b1a700f9 /usr.bin/mandoc/mdoc_html.c | |
parent | clist's chained, and could get fairly long which is why there was a (diff) | |
download | wireguard-openbsd-dd617d7660ceb41dbbd1a712806a45288e52a2cc.tar.xz wireguard-openbsd-dd617d7660ceb41dbbd1a712806a45288e52a2cc.zip |
header cleanup:
* add missing forward declarations
* remove needless header inclusions
* some style unification
Diffstat (limited to 'usr.bin/mandoc/mdoc_html.c')
-rw-r--r-- | usr.bin/mandoc/mdoc_html.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/mandoc/mdoc_html.c b/usr.bin/mandoc/mdoc_html.c index b22e2f29e44..037c01d0f69 100644 --- a/usr.bin/mandoc/mdoc_html.c +++ b/usr.bin/mandoc/mdoc_html.c @@ -1,4 +1,4 @@ -/* $OpenBSD: mdoc_html.c,v 1.89 2014/11/30 05:28:00 schwarze Exp $ */ +/* $OpenBSD: mdoc_html.c,v 1.90 2014/12/01 08:05:02 schwarze Exp $ */ /* * Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2014 Ingo Schwarze <schwarze@openbsd.org> @@ -24,11 +24,10 @@ #include <string.h> #include <unistd.h> -#include "mandoc.h" #include "mandoc_aux.h" +#include "mdoc.h" #include "out.h" #include "html.h" -#include "mdoc.h" #include "main.h" #define INDENT 5 |