/* config.h. Generated by configure. */ /* config.h.in. Generated from configure.in by autoheader. */ /* Define this to the default x86 target cpu (5 pentium, 6 ppro). */ /* #undef COMPILE_CPU */ /* Define to 1 if you have the header file. */ #define HAVE_GETOPT_H 1 /* Define to 1 if you have the `getopt_long' function. */ #define HAVE_GETOPT_LONG 1 /* Define to 1 if you have the `gettimeofday' function. */ #define HAVE_GETTIMEOFDAY 1 /* Define to 1 if you have the header file. */ /* #undef HAVE_INTTYPES_H */ /* Define to 1 if you have the header file. */ /* #undef HAVE_MEMORY_H */ /* Define to 1 if you have the header file. */ #define HAVE_STDBOOL_H 1 /* Define to 1 if you have the header file. */ /* #undef HAVE_STDINT_H */ /* Define to 1 if you have the header file. */ /* #undef HAVE_STDLIB_H */ /* Define to 1 if you have the header file. */ /* #undef HAVE_STRINGS_H */ /* Define to 1 if you have the header file. */ /* #undef HAVE_STRING_H */ /* Define to 1 if you have the header file. */ /* #undef HAVE_SYS_STAT_H */ /* Define to 1 if you have the header file. */ #define HAVE_SYS_TIME_H 1 /* Define to 1 if you have the header file. */ /* #undef HAVE_SYS_TYPES_H */ /* Define to 1 if you have the header file. */ /* #undef HAVE_UNISTD_H */ /* Name of package */ #define PACKAGE "fcrackzip" /* Define to the address where bug reports for this package should be sent. */ #define PACKAGE_BUGREPORT "" /* Define to the full name of this package. */ #define PACKAGE_NAME "" /* Define to the full name and version of this package. */ #define PACKAGE_STRING "" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "" /* Define to the version of this package. */ #define PACKAGE_VERSION "" /* The size of a `int', as computed by sizeof. */ #define SIZEOF_INT 0 /* The size of a `long', as computed by sizeof. */ #define SIZEOF_LONG 0 /* The size of a `short', as computed by sizeof. */ #define SIZEOF_SHORT 0 /* Define to 1 if you have the ANSI C header files. */ /* #undef STDC_HEADERS */ /* Define if you can use gcc inline assembly. */ /* #undef USE_GCC_ASM */ /* Define if you can use unix-style redirection. */ #define USE_UNIX_REDIRECTION 1 /* Version number of package */ #define VERSION "0.3" /* Define to empty if `const' does not conform to ANSI C. */ #define const /* Define as `__inline' if that's what the C compiler calls it, or to nothing if it is not supported. */ #define inline typedef unsigned char u8; #if SIZEOF_SHORT == 2 typedef unsigned short u16; #elif SIZEOF_INT == 2 typedef unsigned int u16; #else #warn unable to find type with 2 bytes size #endif #if SIZEOF_INT == 4 typedef unsigned int u32; #elif SIZEOF_LONG == 4 typedef unsigned long u32; #else #warn unable to find type with 4 bytes size #endif #if defined(__GNUC__) && defined(__i386__) #define REGPARAM __attribute__((regparm(1))) #else #define REGPARAM #endif