ustd.h 871 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. /* ustd.h common macros and includes */
  2. #ifndef LIBRHASH_USTD_H
  3. #define LIBRHASH_USTD_H
  4. /* Include KWSys Large File Support configuration. */
  5. #include <cmsys/Configure.h>
  6. #if defined(_MSC_VER)
  7. # pragma warning(push,1)
  8. #endif
  9. #include <cm_kwiml.h>
  10. #ifndef KWIML_INT_HAVE_INT64_T
  11. # define int64_t KWIML_INT_int64_t
  12. #endif
  13. #ifndef KWIML_INT_HAVE_INT32_T
  14. # define int32_t KWIML_INT_int32_t
  15. #endif
  16. #ifndef KWIML_INT_HAVE_INT16_T
  17. # define int16_t KWIML_INT_int16_t
  18. #endif
  19. #ifndef KWIML_INT_HAVE_INT8_T
  20. # define int8_t KWIML_INT_int8_t
  21. #endif
  22. #ifndef KWIML_INT_HAVE_UINT64_T
  23. # define uint64_t KWIML_INT_uint64_t
  24. #endif
  25. #ifndef KWIML_INT_HAVE_UINT32_T
  26. # define uint32_t KWIML_INT_uint32_t
  27. #endif
  28. #ifndef KWIML_INT_HAVE_UINT16_T
  29. # define uint16_t KWIML_INT_uint16_t
  30. #endif
  31. #ifndef KWIML_INT_HAVE_UINT8_T
  32. # define uint8_t KWIML_INT_uint8_t
  33. #endif
  34. #endif /* LIBRHASH_USTD_H */