home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / lan / soss.arj / INCLUDE / TYPES.H < prev    next >
C/C++ Source or Header  |  1991-04-11  |  511b  |  18 lines

  1. /* Copyright 1986 by Carnegie Mellon */
  2. /*  Copyright 1983 by the Massachusetts Institute of Technology  */
  3.  
  4. /* This file includes useful typedefs for various kinds of data which should
  5.     be portable between machines. This is, then, the machine dependent
  6.     file. */
  7.  
  8. #ifndef TYPES_H                /* DDP */
  9. #define TYPES_H    1            /* DDP */
  10.  
  11. typedef    char    byte;    /* 8 bits */
  12. typedef int    word;    /* 16 bits */
  13. typedef    long    lword;    /* 32 bits */
  14. typedef    unsigned unshort;
  15. typedef char *caddr_t;
  16.  
  17. #endif                    /* DDP */
  18.