summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorschwarze <schwarze@openbsd.org>2014-12-01 04:32:34 +0000
committerschwarze <schwarze@openbsd.org>2014-12-01 04:32:34 +0000
commit2198a5548392f4e66350ec2fadf286efaa651f7b (patch)
tree55ab78fa373cdc0a7164417303e1042a094a5989
parentRemove an old and superfluous comment, and fix some KNF style issues in (diff)
downloadwireguard-openbsd-2198a5548392f4e66350ec2fadf286efaa651f7b.tar.xz
wireguard-openbsd-2198a5548392f4e66350ec2fadf286efaa651f7b.zip
The header libmandoc.h is part of the internal parser interface,
but html.c is not part of the parser at all, so it cannot include that header, and actually, it doesn't need it. Found while auditing includes after Theo's recent *.h commit.
-rw-r--r--usr.bin/mandoc/html.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/mandoc/html.c b/usr.bin/mandoc/html.c
index 1e199ef807a..14ead7751e9 100644
--- a/usr.bin/mandoc/html.c
+++ b/usr.bin/mandoc/html.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: html.c,v 1.51 2014/10/29 00:17:01 schwarze Exp $ */
+/* $OpenBSD: html.c,v 1.52 2014/12/01 04:32:34 schwarze Exp $ */
/*
* Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2011, 2012, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -28,7 +28,6 @@
#include "mandoc.h"
#include "mandoc_aux.h"
-#include "libmandoc.h"
#include "out.h"
#include "html.h"
#include "main.h"