home *** CD-ROM | disk | FTP | other *** search
/ CD Actual 9 / CDACTUAL9.iso / progs / CB / DATA.Z / TYPES.H < prev    next >
Encoding:
C/C++ Source or Header  |  1996-04-19  |  460 b   |  31 lines

  1. /*  types.h
  2.  
  3.     Types for dealing with time.
  4.  
  5. */
  6.  
  7. /* $Copyright: 1987$ */
  8. /* $Revision:   8.1  $ */
  9.  
  10. #if !defined(__TYPES_H)
  11. #define __TYPES_H
  12.  
  13. #ifndef  _TIME_T
  14. #define  _TIME_T
  15. typedef long time_t;
  16. #endif
  17.  
  18. #if defined(__FLAT__)
  19. typedef short dev_t;
  20. typedef short ino_t;
  21. typedef short mode_t;
  22. typedef short nlink_t;
  23. typedef int   uid_t;
  24. typedef int   gid_t;
  25. typedef long  off_t;
  26.  
  27. #endif  /* __FLAT__ */
  28.  
  29. #endif  /* __TYPES_H */
  30.  
  31.