1234567891011121314151617181920212223242526272829303132333435 |
- /* config.h.in. Generated automatically from configure.in by autoheader. */
- /* Define to empty if the keyword does not work. */
- #undef const
- /* Define if your struct stat has st_rdev. */
- #undef HAVE_ST_RDEV
- /* Define if you have <sys/wait.h> that is POSIX.1 compatible. */
- #undef HAVE_SYS_WAIT_H
- /* Define to `long' if <sys/types.h> doesn't define. */
- #undef off_t
- /* Define to `unsigned' if <sys/types.h> doesn't define. */
- #undef size_t
- /* Define if you have the ANSI C header files. */
- #undef STDC_HEADERS
- /* The number of bytes in a int. */
- #undef SIZEOF_INT
- /* The number of bytes in a long. */
- #undef SIZEOF_LONG
- #if(SIZEOF_INT==4)
- typedef int int32;
- typedef unsigned int uint32;
- #elif(SIZEOF_LONG==4)
- typedef long int32;
- typedef unsigned long uint32;
- #else
- #error "Can't find 32 bit types!!"
- #endif
|