home *** CD-ROM | disk | FTP | other *** search
/ ANews 3 / AnewsCD3.iso / DP / Programmation / GCC / gcc_include / values.h < prev    next >
Encoding:
C/C++ Source or Header  |  1993-03-08  |  373 b   |  20 lines

  1. /*    some values constants for ansic.library        */
  2. /*    (c)Copyright 1992 Davide Pasetto             */
  3.  
  4. #ifndef _VALUES_H
  5. #define _VALUES_H
  6.  
  7. #define    BITSPERBYTE    8
  8. #define CHARBITS    8
  9. #define SHORTBITS    16
  10. #define INTBITS        32
  11. #define LONGBITS    32
  12. #define PTRBITS        32
  13. #define DOUBLEBITS    64
  14. #define FLOATBITS    32
  15. #define MAXLONG        0x7fffffff
  16. #define MINLONG        0x80000000
  17.  
  18. #endif    /* _VALUES_H */
  19.  
  20.