[BACK]Return to tbl.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / mandoc

Diff for /src/usr.bin/mandoc/tbl.c between version 1.1 and 1.2

version 1.1, 2010/10/15 19:20:03 version 1.2, 2010/10/15 21:33:47
Line 23 
Line 23 
 #include <stdlib.h>  #include <stdlib.h>
 #include <string.h>  #include <string.h>
   
   #include "out.h"
   #include "term.h"
 #include "tbl.h"  #include "tbl.h"
 #include "tbl_extern.h"  #include "tbl_extern.h"
   
Line 104 
Line 106 
   
   
 int  int
 tbl_write(const struct tbl *tbl)  tbl_write(struct termp *p, const struct tbl *tbl)
 {  {
   
 #if 1  #if 1
         return(tbl_write_term(tbl));          return(tbl_write_term(p, tbl));
 #else  #else
         return(tbl_write_tree(tbl));          return(tbl_write_tree(tbl));
 #endif  #endif

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2