=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mandoc/tbl.c,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- src/usr.bin/mandoc/tbl.c 2010/10/15 19:20:03 1.1 +++ src/usr.bin/mandoc/tbl.c 2010/10/15 21:33:47 1.2 @@ -1,4 +1,4 @@ -/* $Id: tbl.c,v 1.1 2010/10/15 19:20:03 schwarze Exp $ */ +/* $Id: tbl.c,v 1.2 2010/10/15 21:33:47 schwarze Exp $ */ /* * Copyright (c) 2009 Kristaps Dzonsons * @@ -23,6 +23,8 @@ #include #include +#include "out.h" +#include "term.h" #include "tbl.h" #include "tbl_extern.h" @@ -104,11 +106,11 @@ int -tbl_write(const struct tbl *tbl) +tbl_write(struct termp *p, const struct tbl *tbl) { #if 1 - return(tbl_write_term(tbl)); + return(tbl_write_term(p, tbl)); #else return(tbl_write_tree(tbl)); #endif