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

Diff for /mandoc/dba.c between version 1.3 and 1.5

version 1.3, 2016/07/29 15:29:32 version 1.5, 2016/08/05 23:15:08
Line 17 
Line 17 
  * Allocation-based version of the mandoc database, for read-write access.   * Allocation-based version of the mandoc database, for read-write access.
  * The interface is defined in "dba.h".   * The interface is defined in "dba.h".
  */   */
   #include "config.h"
   
 #include <sys/types.h>  #include <sys/types.h>
   #if HAVE_ENDIAN
   #include <endian.h>
   #elif HAVE_SYS_ENDIAN
   #include <sys/endian.h>
   #elif HAVE_NTOHL
   #include <arpa/inet.h>
   #endif
 #include <errno.h>  #include <errno.h>
 #include <stdint.h>  #include <stdint.h>
 #include <stdlib.h>  #include <stdlib.h>

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

CVSweb