1
0

times.h 301 B

1234567891011121314151617181920212223242526
  1. #ifndef _SYS_TIMES_H
  2. #define _SYS_TIMES_H
  3. #ifdef __cplusplus
  4. extern "C" {
  5. #endif
  6. #define __NEED_clock_t
  7. #include <bits/alltypes.h>
  8. struct tms
  9. {
  10. clock_t tms_utime;
  11. clock_t tms_stime;
  12. clock_t tms_cutime;
  13. clock_t tms_cstime;
  14. };
  15. clock_t times (struct tms *);
  16. #ifdef __cplusplus
  17. }
  18. #endif
  19. #endif