add swifi to the build/install.
[minix.git] / include / sys / times.h
blob76862a1bd773aa06a32e35a1c9d2ee2d1c953da7
1 /* The <times.h> header is for time times() system call. */
3 #ifndef _TIMES_H
4 #define _TIMES_H
6 #ifndef _CLOCK_T
7 #define _CLOCK_T
8 typedef long clock_t; /* unit for system accounting */
9 #endif
11 struct tms {
12 clock_t tms_utime;
13 clock_t tms_stime;
14 clock_t tms_cutime;
15 clock_t tms_cstime;
18 /* Function Prototypes. */
19 #ifndef _ANSI_H
20 #include <ansi.h>
21 #endif
23 _PROTOTYPE( clock_t times, (struct tms *_buffer) );
25 #endif /* _TIMES_H */