home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / INCSYS.PAK / TYPES.H < prev   
Encoding:
C/C++ Source or Header  |  1997-05-06  |  587 b   |  37 lines

  1. /*  types.h
  2.  
  3.     Types for dealing with time.
  4.  
  5. */
  6.  
  7. /*
  8.  *      C/C++ Run Time Library - Version 8.0
  9.  *
  10.  *      Copyright (c) 1987, 1997 by Borland International
  11.  *      All Rights Reserved.
  12.  *
  13.  */
  14. /* $Revision:   8.1  $ */
  15.  
  16. #if !defined(__TYPES_H)
  17. #define __TYPES_H
  18.  
  19. #ifndef  _TIME_T
  20. #define  _TIME_T
  21. typedef long time_t;
  22. #endif
  23.  
  24. #if defined(__FLAT__)
  25. typedef short dev_t;
  26. typedef short ino_t;
  27. typedef short mode_t;
  28. typedef short nlink_t;
  29. typedef int   uid_t;
  30. typedef int   gid_t;
  31. typedef long  off_t;
  32.  
  33. #endif  /* __FLAT__ */
  34.  
  35. #endif  /* __TYPES_H */
  36.  
  37.