summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@cvs.openbsd.org>2014-12-01 04:32:35 +0000
committerIngo Schwarze <schwarze@cvs.openbsd.org>2014-12-01 04:32:35 +0000
commit311c4bc6d36dccc373f12987915499df1b7f5fe2 (patch)
treec51b47b6cdc890b62e2cc91d5f6edb78e2946140
parent7c6688fe00fbb08bd9a62ed4b3f5ce00bdadc68b (diff)
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"