1
0
mirror of https://github.com/fluencelabs/musl synced 2025-05-05 03:52:13 +00:00

27 lines
301 B
C
Raw Permalink Normal View History

2011-02-12 00:22:29 -05:00
#ifndef _SYS_TIMES_H
#define _SYS_TIMES_H
#ifdef __cplusplus
extern "C" {
#endif
2011-02-12 00:22:29 -05: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 00:22:29 -05:00
#endif
#endif