xref: /original-bsd/sys/sys/times.h (revision 0b685140)
1 /*	times.h	4.2	81/02/19	*/
2 
3 /*
4  * Structure returned by times()
5  */
6 struct tms {
7 	time_t	tms_utime;		/* user time */
8 	time_t	tms_stime;		/* system time */
9 	time_t	tms_cutime;		/* user time, children */
10 	time_t	tms_cstime;		/* system time, children */
11 };
12