amigaconfig.h 829 B

123456789101112131415161718192021222324252627282930313233
  1. #ifndef AMIGACONFIG_H
  2. #define AMIGACONFIG_H
  3. /* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */
  4. #define BYTEORDER 4321
  5. /* Define to 1 if you have the `bcopy' function. */
  6. #define HAVE_BCOPY 1
  7. /* Define to 1 if you have the <check.h> header file. */
  8. #undef HAVE_CHECK_H
  9. /* Define to 1 if you have the `memmove' function. */
  10. #define HAVE_MEMMOVE 1
  11. /* Define to 1 if you have the <unistd.h> header file. */
  12. #define HAVE_UNISTD_H 1
  13. /* whether byteorder is bigendian */
  14. #define WORDS_BIGENDIAN
  15. /* Define to specify how much context to retain around the current parse
  16. point. */
  17. #define XML_CONTEXT_BYTES 1024
  18. /* Define to make parameter entity parsing functionality available. */
  19. #define XML_DTD
  20. /* Define to make XML Namespaces functionality available. */
  21. #define XML_NS
  22. #endif /* AMIGACONFIG_H */