1#pragma once
2
3#ifdef __cplusplus
4extern "C" {
5#endif
6
7#define __NEED_clock_t
8#include <bits/alltypes.h>
9
10struct tms {
11    clock_t tms_utime;
12    clock_t tms_stime;
13    clock_t tms_cutime;
14    clock_t tms_cstime;
15};
16
17clock_t times(struct tms*);
18
19#ifdef __cplusplus
20}
21#endif
22