/* * bnconfig.h -- Configuration file for BigNum library. * * This file is automatically filled in by configure. * Everything must start out turned *off*, because configure * (or, more properly, config.status) only knows how to turn them * *on*. */ #ifndef CONFIG_H #define CONFIG_H /* Define to empty if the compiler does not support 'const' variables. */ #undef const /* Define to `unsigned' if doesn't define it. */ #undef size_t /* Checks for the presence and absence of various header files */ #define HAVE_ASSERT_H 0 #define NO_ASSERT_H !HAVE_ASSERT_H #define HAVE_LIMITS_H 0 #define NO_LIMITS_H !HAVE_LIMITS_H #define HAVE_STDLIB_H 0 #define NO_STDLIB_H !HAVE_STDLIB_H #define HAVE_STRING_H 0 #define NO_STRING_H !HAVE_STRING_H #define HAVE_STRINGS_H 0 #define NEED_MEMORY_H 0 /* We go to some trouble to find accurate times... */ /* Define if you have Posix.4 glock_gettime() */ #define HAVE_CLOCK_GETTIME 0 /* Define if you have Solaris-style gethrvtime() */ #define HAVE_GETHRVTIME 0 /* Define if you have getrusage() */ #define HAVE_GETRUSAGE 0 /* Define if you have clock() */ #define HAVE_CLOCK 0 /* Define if you have time() */ #define HAVE_TIME 0 /* * Define as 0 if #including automatically * #includes , and doing so explicitly causes an * error. */ #define TIME_WITH_SYS_TIME 0 /* Defines for various kinds of library brokenness */ /* Define if is missing prototypes (= lots of warnings!) */ #define NO_STDIO_PROTOS 0 /* Define if depends on and breaks without it */ #define ASSERT_NEEDS_STDIO 0 /* Define if depends on and complains without it */ #define ASSERT_NEEDS_STDLIB 0 /* * Define if delcares the mem* functions to take char * * instead of void * parameters (= lots of warnings) */ #define MEM_PROTOS_BROKEN 0 /* If not available, bcopy() is substituted */ #define HAVE_MEMMOVE 0 #define NO_MEMMOVE !HAVE_MEMMOVE #define HAVE_MEMCPY 0 #define NO_MEMCPY !HAVE_MEMCPY #endif /* CONFIG_H */