Research V7 development
[unix-history] / usr / include / sys / times.h
CommitLineData
caf79156
KT
1/*
2 * Structure returned by times()
3 */
4struct tms {
5 time_t tms_utime; /* user time */
6 time_t tms_stime; /* system time */
7 time_t tms_cutime; /* user time, children */
8 time_t tms_cstime; /* system time, children */
9};