home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume28 / bootp-2.4.0 / part01 / bptypes.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-22  |  303 b   |  24 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. #ifndef    int32
  11. #define int32 long
  12. #endif
  13. typedef unsigned int32 u_int32;
  14.  
  15. /*
  16.  * Nice typedefs. . .
  17.  */
  18.  
  19. typedef int boolean;
  20. typedef unsigned char byte;
  21.  
  22.  
  23. #endif    /* BPTYPES_H */
  24.