system.h 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. #ifndef __SYS__
  2. #define __SYS__
  3. #ifdef WORDS_BIGENDIAN
  4. #define BIG_ENDIANS
  5. #else
  6. #define LITTLE_ENDIANS
  7. #endif
  8. #if defined( __WATCOMC__ )
  9. // they didn't include this def in their math include
  10. #ifndef M_PI
  11. #define M_PI 3.141592654
  12. #endif
  13. // so stuff can find proper file ops
  14. #include <io.h>
  15. #elif defined( __POWERPC__ )
  16. // they didn't include this def in their math include
  17. #ifndef M_PI
  18. #define M_PI 3.141592654
  19. #endif
  20. #include <unistd.h>
  21. #else
  22. // so apps can find unlink
  23. #include <unistd.h>
  24. #endif
  25. #define short_swap(x) (((((unsigned short) (x)))<<8)|((((unsigned short) (x)))>>8))
  26. #define long_swap(x) \
  27. ((( ((unsigned long)(x)) )>>24)|((( ((unsigned long)(x)) )&0x00ff0000)>>8)| \
  28. ((( ((unsigned long)(x)) )&0x0000ff00)<<8)|(( ((unsigned long)(x)) )<<24))
  29. #if defined BIG_ENDIANS
  30. #define LONG int
  31. #define int_to_intel(x) short_swap(x)
  32. #define int_to_local(x) int_to_intel(x)
  33. #define big_long_to_local(x) (x)
  34. #define big_short_to_local(x) (x)
  35. #define long_to_intel(x) long_swap(x)
  36. #define long_to_local(x) long_to_intel(x)
  37. #else
  38. #define LONG long
  39. #define int_to_intel(x) (x)
  40. #define int_to_local(x) (x)
  41. #define long_to_local(x) (x)
  42. #define long_to_intel(x) (x)
  43. #define big_long_to_local(x) long_swap(x)
  44. #define big_short_to_local(x) short_swap(x)
  45. #endif
  46. #define bltl(x) big_long_to_local(x)
  47. #define bstl(x) big_short_to_local(x)
  48. #define lltl(x) long_to_intel(x)
  49. #define lstl(x) int_to_intel(x)
  50. #endif