#ifndef _SYS_TIMES_H #define _SYS_TIMES_H // TODO: Only define the clock_t type. #include #ifdef __cplusplus extern "C" { #endif struct tms { clock_t tms_utime; clock_t tms_stime; clock_t tms_cutime; clock_t tms_cstime; }; #ifndef __MLIBC_ABI_ONLY clock_t times(struct tms *); #endif /* !__MLIBC_ABI_ONLY */ #ifdef __cplusplus } #endif #endif // _SYS_TIMES_H