fix all missing instances of __cplusplus checks/extern "C" in headers
[musl] / include / sys / times.h
1 #ifndef _SYS_TIMES_H
2 #define _SYS_TIMES_H
3
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
7
8 #define __NEED_clock_t
9 #include <bits/alltypes.h>
10
11 struct tms
12 {
13         clock_t tms_utime;
14         clock_t tms_stime;
15         clock_t tms_cutime;
16         clock_t tms_cstime;
17 };
18
19 clock_t times (struct tms *);
20
21 #ifdef __cplusplus
22 }
23 #endif
24
25 #endif
26