musl/include/sys/times.h

27 lines
301 B
C
Raw Normal View History

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