home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume26 / cook-1.4 / part01 / h / time.h < prev   
Encoding:
C/C++ Source or Header  |  1993-05-03  |  257 b   |  21 lines

  1. /*
  2.  * MANIFEST: minimal time.h suplement
  3.  */
  4.  
  5. #ifndef _H_time
  6. #define _H_time
  7.  
  8. #include "/usr/include/time.h"
  9.  
  10. #ifndef _TIME_T
  11. #define _TIME_T
  12. typedef long time_t;
  13. #endif
  14.  
  15. #ifndef _CLOCK_T
  16. #define _CLOCK_T
  17. typedef long clock_t;
  18. #endif
  19.  
  20. #endif /* _H_time */
  21.