kmkbuiltin/expr.c: file revision 1.17 from OpenBSD
[kbuild-mirror.git] / src / ash / win / sys / times.h
blob68ce11d4d2d51402ef6c3ea7fcd200f396c5afef
1 #ifndef __sys_times_h__
2 #define __sys_times_h__
3 #include <time.h>
5 struct tms
7 clock_t tms_utime; /**< User mode CPU time. */
8 clock_t tms_stime; /**< Kernel mode CPU time. */
9 clock_t tms_cutime; /**< User mode CPU time for waited for children. */
10 clock_t tms_cstime; /**< Kernel mode CPU time for waited for children. */
13 clock_t times(struct tms *);
15 #endif