Go to the documentation of this file.
22 #define LDNS_BUILD_CONFIG_HAVE_SSL 1
23 #define LDNS_BUILD_CONFIG_HAVE_INTTYPES_H 1
24 #define LDNS_BUILD_CONFIG_HAVE_ATTR_FORMAT 1
25 #define LDNS_BUILD_CONFIG_HAVE_ATTR_UNUSED 1
26 #define LDNS_BUILD_CONFIG_HAVE_SOCKLEN_T 1
44 # define _Bool signed char
50 # define __bool_true_false_are_defined 1
54 #if LDNS_BUILD_CONFIG_HAVE_ATTR_FORMAT
55 #define ATTR_FORMAT(archetype, string_index, first_to_check) \
56 __attribute__ ((format (archetype, string_index, first_to_check)))
58 #define ATTR_FORMAT(archetype, string_index, first_to_check)
61 #if defined(__cplusplus)
62 #define ATTR_UNUSED(x)
63 #elif LDNS_BUILD_CONFIG_HAVE_ATTR_UNUSED
64 #define ATTR_UNUSED(x) x __attribute__((unused))
66 #define ATTR_UNUSED(x) x
69 #if !LDNS_BUILD_CONFIG_HAVE_SOCKLEN_T
70 typedef int socklen_t;