home *** CD-ROM | disk | FTP | other *** search
/ Amiga ACS 1998 #4 / amigaacscoverdisc1998-041998.iso / utilities / shareware / dev / vbcc / machines / amiga68k / include / limits.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-12-30  |  440 b   |  22 lines

  1. #ifndef __LIMITS_H
  2. #define __LIMITS_H 1
  3.  
  4. #define CHAR_BIT 8
  5. #define INT_MAX 2147483647L
  6. #define INT_MIN -2147483648L
  7. #define LONG_MAX 2147483647L
  8. #define LONG_MIN -2147483648L
  9. #define SCHAR_MAX +127
  10. #define SCHAR_MIN -128
  11. #define CHAR_MAX SCHAR_MAX
  12. #define CHAR_MIN SCHAR_MIN
  13. #define SHRT_MAX 32767
  14. #define SHRT_MIN -32768
  15. #define UCHAR_MAX 255U
  16. #define UINT_MAX 4294967295UL
  17. #define ULONG_MAX 4294967295UL
  18. #define USHRT_MAX 65535
  19.  
  20. #endif
  21.  
  22.