xref: /original-bsd/sys/sys/times.h (revision cc77da92)
1 /*	times.h	3.2	06/07/80	*/
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