home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / e / emxdev8f.zip / TIMES.H < prev    next >
C/C++ Source or Header  |  1992-11-18  |  356b  |  25 lines

  1. /* sys/times.h (emx+gcc) */
  2.  
  3. #if !defined (_SYS_TIMES_H)
  4. #define _SYS_TIMES_H
  5.  
  6. #if defined (__cplusplus)
  7. extern "C" {
  8. #endif
  9.  
  10. struct tms
  11. {
  12.   time_t tms_utime;
  13.   time_t tms_stime;
  14.   time_t tms_cutime;
  15.   time_t tms_cstime;
  16. };
  17.  
  18. long times (struct tms *buffer);
  19.  
  20. #if defined (__cplusplus)
  21. }
  22. #endif
  23.  
  24. #endif /* !defined (_SYS_TIMES_H) */
  25.