summaryrefslogtreecommitdiffstatshomepage
path: root/html.c
diff options
context:
space:
mode:
authorKristaps Dzonsons <kristaps@bsd.lv>2009-10-13 10:57:25 +0000
committerKristaps Dzonsons <kristaps@bsd.lv>2009-10-13 10:57:25 +0000
commite012cb8b2706ff0d54c6b3b68fa79354484752dc (patch)
treea744b05cb6416b74c66a37caba7752483cf602a1 /html.c
parent5cf7b56146264fe9cc6ca3f7594e29a1da4df624 (diff)
downloadmandoc-e012cb8b2706ff0d54c6b3b68fa79354484752dc.tar.gz
mandoc-e012cb8b2706ff0d54c6b3b68fa79354484752dc.tar.zst
mandoc-e012cb8b2706ff0d54c6b3b68fa79354484752dc.zip
Moved output definitions into main.h.
Pushed terminal_{mdoc,man} into {mdoc,man}_term.c.
Diffstat (limited to 'html.c')
-rw-r--r--html.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/html.c b/html.c
index 8001cf6c..623fa975 100644
--- a/html.c
+++ b/html.c
@@ -1,4 +1,4 @@
-/* $Id: html.c,v 1.63 2009/10/13 10:21:24 kristaps Exp $ */
+/* $Id: html.c,v 1.64 2009/10/13 10:57:25 kristaps Exp $ */
/*
* Copyright (c) 2008, 2009 Kristaps Dzonsons <kristaps@kth.se>
*
@@ -29,6 +29,7 @@
#include "out.h"
#include "chars.h"
#include "html.h"
+#include "main.h"
#define UNCONST(a) ((void *)(uintptr_t)(const void *)(a))