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

Diff for /mandoc/test-ohash.c between version 1.3 and 1.4

version 1.3, 2014/06/20 02:55:49 version 1.4, 2015/10/06 18:32:20
Line 3 
Line 3 
 #include <stdlib.h>  #include <stdlib.h>
 #include <ohash.h>  #include <ohash.h>
   
 void *xmalloc(size_t sz, void *arg) { return(calloc(1,sz)); }  void *xmalloc(size_t sz, void *arg) { return calloc(1,sz); }
 void *xcalloc(size_t nmemb, size_t sz, void *arg) { return(calloc(nmemb,sz)); }  void *xcalloc(size_t nmemb, size_t sz, void *arg) { return calloc(nmemb,sz); }
 void xfree(void *p, void *arg) { free(p); }  void xfree(void *p, void *arg) { free(p); }
   
 int  int

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

CVSweb