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/man_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/man_html.c')
-rw-r--r-- | usr.bin/mandoc/man_html.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.bin/mandoc/man_html.c b/usr.bin/mandoc/man_html.c index d2c15b0068a..bba6f68ebc4 100644 --- a/usr.bin/mandoc/man_html.c +++ b/usr.bin/mandoc/man_html.c @@ -1,4 +1,4 @@ -/* $OpenBSD: man_html.c,v 1.57 2014/11/28 19:25:03 schwarze Exp $ */ +/* $OpenBSD: man_html.c,v 1.58 2014/12/01 08:05:02 schwarze Exp $ */ /* * Copyright (c) 2008-2012, 2014 Kristaps Dzonsons <kristaps@bsd.lv> * Copyright (c) 2013, 2014 Ingo Schwarze <schwarze@openbsd.org> @@ -23,11 +23,10 @@ #include <stdlib.h> #include <string.h> -#include "mandoc.h" #include "mandoc_aux.h" +#include "man.h" #include "out.h" #include "html.h" -#include "man.h" #include "main.h" /* TODO: preserve ident widths. */ |