macconfig.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /*================================================================
  2. ** Copyright 2000, Clark Cooper
  3. ** All rights reserved.
  4. **
  5. ** This is free software. You are permitted to copy, distribute, or modify
  6. ** it under the terms of the MIT/X license (contained in the COPYING file
  7. ** with this distribution.)
  8. **
  9. */
  10. #ifndef MACCONFIG_H
  11. #define MACCONFIG_H
  12. /* 1234 = LIL_ENDIAN, 4321 = BIGENDIAN */
  13. #define BYTEORDER 4321
  14. /* Define to 1 if you have the `bcopy' function. */
  15. #undef HAVE_BCOPY
  16. /* Define to 1 if you have the `memmove' function. */
  17. #define HAVE_MEMMOVE
  18. /* Define to 1 if you have a working `mmap' system call. */
  19. #undef HAVE_MMAP
  20. /* Define to 1 if you have the <unistd.h> header file. */
  21. #undef HAVE_UNISTD_H
  22. /* whether byteorder is bigendian */
  23. #define WORDS_BIGENDIAN
  24. /* Define to specify how much context to retain around the current parse
  25. point. */
  26. #undef XML_CONTEXT_BYTES
  27. /* Define to make parameter entity parsing functionality available. */
  28. #define XML_DTD
  29. /* Define to make XML Namespaces functionality available. */
  30. #define XML_NS
  31. /* Define to empty if `const' does not conform to ANSI C. */
  32. #undef const
  33. /* Define to `long' if <sys/types.h> does not define. */
  34. #define off_t long
  35. /* Define to `unsigned' if <sys/types.h> does not define. */
  36. #undef size_t
  37. #endif /* ifndef MACCONFIG_H */