home *** CD-ROM | disk | FTP | other *** search
/ Black Box 4 / BlackBox.cdr / lan / soss.arj / SRC / GENERAL.H < prev    next >
C/C++ Source or Header  |  1991-02-22  |  281b  |  24 lines

  1. /*
  2.  *  general.h -- utility defs and routines header
  3.  */
  4.  
  5. extern int errno;
  6.  
  7. #ifndef bool_t
  8. #define bool_t int
  9. #endif
  10.  
  11. #ifndef TRUE
  12. #define TRUE 1
  13. #endif
  14.  
  15. #ifndef FALSE
  16. #define FALSE 0
  17. #endif
  18.  
  19. #ifndef caddr_t
  20. #define caddr_t char *
  21. #endif
  22.  
  23. #define dev_t int
  24.