mirror of https://git.musl-libc.org/git/musl
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
231 B
18 lines
231 B
|
15 years ago
|
#ifndef _SYS_TIMES_H
|
||
|
|
#define _SYS_TIMES_H
|
||
|
|
|
||
|
|
#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 *);
|
||
|
|
|
||
|
|
#endif
|