1570af302Sopenharmony_ci#ifndef _SYS_TIMES_H 2570af302Sopenharmony_ci#define _SYS_TIMES_H 3570af302Sopenharmony_ci 4570af302Sopenharmony_ci#ifdef __cplusplus 5570af302Sopenharmony_ciextern "C" { 6570af302Sopenharmony_ci#endif 7570af302Sopenharmony_ci 8570af302Sopenharmony_ci#define __NEED_clock_t 9570af302Sopenharmony_ci#include <bits/alltypes.h> 10570af302Sopenharmony_ci 11570af302Sopenharmony_cistruct tms { 12570af302Sopenharmony_ci clock_t tms_utime; 13570af302Sopenharmony_ci clock_t tms_stime; 14570af302Sopenharmony_ci clock_t tms_cutime; 15570af302Sopenharmony_ci clock_t tms_cstime; 16570af302Sopenharmony_ci}; 17570af302Sopenharmony_ci 18570af302Sopenharmony_ciclock_t times (struct tms *); 19570af302Sopenharmony_ci 20570af302Sopenharmony_ci#ifdef __cplusplus 21570af302Sopenharmony_ci} 22570af302Sopenharmony_ci#endif 23570af302Sopenharmony_ci 24570af302Sopenharmony_ci#endif 25570af302Sopenharmony_ci 26