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

Diff for /mandoc/dbm.c between version 1.1 and 1.3

version 1.1, 2016/07/19 21:31:55 version 1.3, 2016/08/05 23:15:08
Line 17 
Line 17 
  * Map-based version of the mandoc database, for read-only access.   * Map-based version of the mandoc database, for read-only access.
  * The interface is defined in "dbm.h".   * The interface is defined in "dbm.h".
  */   */
   #include "config.h"
   
 #include <assert.h>  #include <assert.h>
   #if HAVE_ENDIAN
 #include <endian.h>  #include <endian.h>
   #elif HAVE_SYS_ENDIAN
   #include <sys/endian.h>
   #elif HAVE_NTOHL
   #include <arpa/inet.h>
   #endif
   #if HAVE_ERR
 #include <err.h>  #include <err.h>
   #endif
 #include <errno.h>  #include <errno.h>
 #include <regex.h>  #include <regex.h>
 #include <stdint.h>  #include <stdint.h>

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

CVSweb