fix misplaced indention in sys/procfs.h
[musl.git] / include / sys / times.h
blobcc55e573fd4b87d1a949423e5c71cc4e2b12b552
1 #ifndef _SYS_TIMES_H
2 #define _SYS_TIMES_H
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
8 #define __NEED_clock_t
9 #include <bits/alltypes.h>
11 struct tms
13 clock_t tms_utime;
14 clock_t tms_stime;
15 clock_t tms_cutime;
16 clock_t tms_cstime;
19 clock_t times (struct tms *);
21 #ifdef __cplusplus
23 #endif
25 #endif