times.h 290 B

123456789101112131415161718192021
  1. #ifndef _SYS_TIMES_H
  2. #define _SYS_TIMES_H
  3. #include <features.h>
  4. #include <sys/types.h>
  5. #include <time.h>
  6. struct tms {
  7. clock_t tms_utime;
  8. clock_t tms_stime;
  9. clock_t tms_cutime;
  10. clock_t tms_cstime;
  11. };
  12. __BEGIN_DECLS
  13. extern clock_t times __P ((struct tms * __tp));
  14. __END_DECLS
  15. #endif