8 #include <sys/_types.h>
10 #if !defined(__clock_t_defined) && !defined(_CLOCK_T_DECLARED)
11 typedef _CLOCK_T_
clock_t;
12 #define __clock_t_defined
13 #define _CLOCK_T_DECLARED
16 /* Get Process Times, P1003.1b-1993, p. 92 */
18 clock_t tms_utime
; /* user time */
19 clock_t tms_stime
; /* system time */
20 clock_t tms_cutime
; /* user time, children */
21 clock_t tms_cstime
; /* system time, children */
24 clock_t times (struct tms
*);
26 clock_t _times (struct tms
*);
32 #endif /* !_SYS_TIMES_H */