Pristine Ack-5.5
[Ack-5.5.git] / lib / minix / include / sys / times.h
1 /* The <times.h> header is for time times() system call. */
2
3 #ifndef _TIMES_H
4 #define _TIMES_H
5
6 #ifndef _CLOCK_T
7 #define _CLOCK_T
8 typedef long clock_t;           /* time in ticks since process started */
9 #endif
10
11 struct tms {
12   clock_t tms_utime;
13   clock_t tms_stime;
14   clock_t tms_cutime;
15   clock_t tms_cstime;
16 };
17
18
19 /* Function Prototypes. */
20 #ifndef _ANSI_H
21 #include <ansi.h>
22 #endif
23
24 _PROTOTYPE( clock_t times, (struct tms *_buffer)                        );
25
26 #endif /* _TIMES_H */