2011-02-12 05:22:29 +00:00
|
|
|
#ifndef _SYS_TIMES_H
|
|
|
|
#define _SYS_TIMES_H
|
|
|
|
|
2011-11-11 01:40:06 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
extern "C" {
|
|
|
|
#endif
|
|
|
|
|
2011-02-12 05:22:29 +00:00
|
|
|
#define __NEED_clock_t
|
|
|
|
#include <bits/alltypes.h>
|
|
|
|
|
2016-07-03 18:40:11 +00:00
|
|
|
struct tms {
|
2011-02-12 05:22:29 +00:00
|
|
|
clock_t tms_utime;
|
|
|
|
clock_t tms_stime;
|
|
|
|
clock_t tms_cutime;
|
|
|
|
clock_t tms_cstime;
|
|
|
|
};
|
|
|
|
|
|
|
|
clock_t times (struct tms *);
|
|
|
|
|
2011-11-11 01:40:06 +00:00
|
|
|
#ifdef __cplusplus
|
|
|
|
}
|
2011-02-12 05:22:29 +00:00
|
|
|
#endif
|
2011-11-11 01:40:06 +00:00
|
|
|
|
|
|
|
#endif
|
|
|
|
|