home *** CD-ROM | disk | FTP | other *** search
/ C Programming Starter Kit 2.0 / SamsPublishing-CProgrammingStarterKit-v2.0-Win31.iso / bc45 / incsys.pak / TYPES.H < prev   
C/C++ Source or Header  |  1997-07-23  |  560b  |  36 lines

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