]> git.cameronkatri.com Git - mandoc.git/blobdiff - eqn_term.c
Complete the whatis.1 -> apropos.1 merge,
[mandoc.git] / eqn_term.c
index cfbd8d48f8079ca57704e977dbc8675a1808ea25..f9950ec81e5af337a38049bd1039f6463e280ac0 100644 (file)
@@ -1,4 +1,4 @@
-/*     $Id: eqn_term.c,v 1.4 2011/07/24 10:09:03 kristaps Exp $ */
+/*     $Id: eqn_term.c,v 1.6 2014/08/10 23:54:41 schwarze Exp $ */
 /*
  * Copyright (c) 2011 Kristaps Dzonsons <kristaps@bsd.lv>
  *
@@ -14,9 +14,9 @@
  * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
  * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
  */
-#ifdef HAVE_CONFIG_H
 #include "config.h"
-#endif
+
+#include <sys/types.h>
 
 #include <assert.h>
 #include <stdio.h>
@@ -37,6 +37,7 @@ static        const enum termfont fontmap[EQNFONT__MAX] = {
 
 static void    eqn_box(struct termp *, const struct eqn_box *);
 
+
 void
 term_eqn(struct termp *p, const struct eqn *ep)
 {
@@ -68,7 +69,7 @@ eqn_box(struct termp *p, const struct eqn_box *bp)
                term_word(p, ")");
        if (bp->right)
                term_word(p, bp->right);
-       if (EQNFONT_NONE != bp->font) 
+       if (EQNFONT_NONE != bp->font)
                term_fontpop(p);
 
        if (bp->next)