times.h 179 B

12345678910111213
  1. #ifndef _LINUX_TIMES_H
  2. #define _LINUX_TIMES_H
  3. #include <linux/types.h>
  4. struct tms {
  5. clock_t tms_utime;
  6. clock_t tms_stime;
  7. clock_t tms_cutime;
  8. clock_t tms_cstime;
  9. };
  10. #endif