1 #ifndef MANDOC_CONFIG_H 2 #define MANDOC_CONFIG_H 3 4 #include <sys/types.h> 5 #include <stdio.h> 6 7 #define HAVE_ERR 1 8 #define HAVE_MANPATH 1 9 #define HAVE_MMAP 1 10 #define HAVE_OHASH 0 11 #define HAVE_PLEDGE 0 12 #define HAVE_PROGNAME 1 13 #define HAVE_REALLOCARRAY 0 14 #define HAVE_SANDBOX_INIT 0 15 #define HAVE_SQLITE3 0 16 #define HAVE_STRPTIME 1 17 #define HAVE_STRTONUM 0 18 #define HAVE_WCHAR 1 19 20 #define BINM_APROPOS "apropos" 21 #define BINM_MAN "man" 22 #define BINM_WHATIS "whatis" 23 #define BINM_MAKEWHATIS "man -w" 24 25 extern void *reallocarray(void *, size_t, size_t); 26 extern long long strtonum(const char *, long long, long long, const char **); 27 28 #endif /* MANDOC_CONFIG_H */ 29