aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/html.c
diff options
context:
space:
mode:
authorIngo Schwarze <schwarze@openbsd.org>2014-12-01 04:34:06 +0000
committerIngo Schwarze <schwarze@openbsd.org>2014-12-01 04:34:06 +0000
commit8b13e228601c0e1f3edae1b46df73770594095d0 (patch)
tree12ec563bef1e418a77af2d7dfc58502990130077 /html.c
parentbdec20eae6e2b2f2fa464025170b85076a6ae68f (diff)
downloadmandoc-8b13e228601c0e1f3edae1b46df73770594095d0.tar.gz
mandoc-8b13e228601c0e1f3edae1b46df73770594095d0.tar.zst
mandoc-8b13e228601c0e1f3edae1b46df73770594095d0.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.
Diffstat (limited to 'html.c')
-rw-r--r--html.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/html.c b/html.c
index 050fefe6..000d9c8a 100644
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/* $Id: html.c,v 1.181 2014/10/29 00:17:43 schwarze Exp $ */
+/* $Id: html.c,v 1.182 2014/12/01 04:34:06 schwarze Exp $ */
/*
* Copyright (c) 2008-2011, 2014 Kristaps Dzonsons <kristaps@bsd.lv>
* Copyright (c) 2011, 2012, 2013, 2014 Ingo Schwarze <schwarze@openbsd.org>
@@ -30,7 +30,6 @@
#include "mandoc.h"
#include "mandoc_aux.h"
-#include "libmandoc.h"
#include "out.h"
#include "html.h"
#include "main.h"