acconfig.h 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. /* Autoheader needs me */
  2. #define PACKAGE "file"
  3. /* Autoheader needs me */
  4. #define VERSION "3.27"
  5. /* Define if builtin ELF support is enabled. */
  6. #undef BUILTIN_ELF
  7. /* Define if ELF core file support is enabled. */
  8. #undef ELFCORE
  9. /* Define if the `long long' type works. */
  10. #undef HAVE_LONG_LONG
  11. /* Define to `unsigned char' if standard headers don't define. */
  12. #undef uint8_t
  13. /* Define to `unsigned short' if standard headers don't define. */
  14. #undef uint16_t
  15. /* Define to `unsigned int' if standard headers don't define. */
  16. #undef uint32_t
  17. /* Define to `unsigned long long', if available, or `unsigned long', if
  18. standard headers don't define. */
  19. #undef uint64_t
  20. /* FIXME: These have to be added manually because autoheader doesn't know
  21. about AC_CHECK_SIZEOF_INCLUDES. */
  22. /* The number of bytes in a uint8_t. */
  23. #define SIZEOF_UINT8_T 0
  24. /* The number of bytes in a uint16_t. */
  25. #define SIZEOF_UINT16_T 0
  26. /* The number of bytes in a uint32_t. */
  27. #define SIZEOF_UINT32_T 0
  28. /* The number of bytes in a uint64_t. */
  29. #define SIZEOF_UINT64_T 0