initial check-in, version 0.5.0
[musl] / include / sys / times.h
1 #ifndef _SYS_TIMES_H
2 #define _SYS_TIMES_H
3
4 #define __NEED_clock_t
5 #include <bits/alltypes.h>
6
7 struct tms
8 {
9         clock_t tms_utime;
10         clock_t tms_stime;
11         clock_t tms_cutime;
12         clock_t tms_cstime;
13 };
14
15 clock_t times (struct tms *);
16
17 #endif