home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 13 / CDA13.ISO / MISC / SRC / INSTALL / BPTYPES.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-12-23  |  488 b   |  28 lines

  1. /* bptypes.h */
  2.  
  3. #ifndef    BPTYPES_H
  4. #define    BPTYPES_H
  5.  
  6. /*
  7.  * 32 bit integers are different types on various architectures
  8.  */
  9.  
  10. /* I hope that this test actually works! */
  11.  
  12. #ifndef    int32
  13. /* Assume that int is 32bits -- we can't test better than this in cpp
  14.    If this is wrong, then define int32 externally to override this */
  15. # define int32 int
  16. #endif
  17.  
  18. typedef unsigned int32 u_int32;
  19.  
  20. /*
  21.  * Nice typedefs. . .
  22.  */
  23.  
  24. typedef int boolean;
  25. typedef unsigned char byte;
  26.  
  27. #endif    /* BPTYPES_H */
  28.