amigaconfig.h 719 B

1234567891011121314151617181920212223242526272829
  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 `memmove' function. */
  8. #define HAVE_MEMMOVE 1
  9. /* Define to 1 if you have the <unistd.h> header file. */
  10. #define HAVE_UNISTD_H 1
  11. /* whether byteorder is bigendian */
  12. #define WORDS_BIGENDIAN
  13. /* Define to specify how much context to retain around the current parse
  14. point. */
  15. #define XML_CONTEXT_BYTES 1024
  16. /* Define to make parameter entity parsing functionality available. */
  17. #define XML_DTD
  18. /* Define to make XML Namespaces functionality available. */
  19. #define XML_NS
  20. #endif /* AMIGACONFIG_H */