home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c083 / 1.ddi / GENSYS.PAK / TYPES.H < prev   
Encoding:
C/C++ Source or Header  |  1993-12-02  |  433 b   |  30 lines

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