[BACK]Return to eqn.c CVS log [TXT][DIR] Up to [cvsweb.bsd.lv] / mandoc

Diff for /mandoc/eqn.c between version 1.1 and 1.4

version 1.1, 2011/02/06 20:36:36 version 1.4, 2011/03/22 09:48:13
Line 25 
Line 25 
 #include <time.h>  #include <time.h>
   
 #include "mandoc.h"  #include "mandoc.h"
 #include "roff.h"  
 #include "libmandoc.h"  #include "libmandoc.h"
 #include "libroff.h"  #include "libroff.h"
   
Line 59  eqn_alloc(int pos, int line)
Line 58  eqn_alloc(int pos, int line)
         struct eqn_node *p;          struct eqn_node *p;
   
         p = mandoc_calloc(1, sizeof(struct eqn_node));          p = mandoc_calloc(1, sizeof(struct eqn_node));
         p->line = line;          p->eqn.line = line;
         p->pos = pos;          p->eqn.pos = pos;
   
         return(p);          return(p);
 }  }
   
   /* ARGSUSED */
 void  void
 eqn_end(struct eqn_node *e)  eqn_end(struct eqn_node *e)
 {  {

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

CVSweb