syslinux-3.08-2 sources from FC4
[bootcd.git] / syslinux / com32 / include / sys / times.h
1 /*
2  * sys/times.h
3  */
4
5 #ifndef _SYS_TIMES_H
6 #define _SYS_TIMES_H
7
8 #include <stdint.h>
9
10 struct tms {
11   /* Empty */
12 };
13
14 #define HZ              18      /* Piddly resolution... */
15 #define CLK_TCK         HZ
16
17 typedef uint16_t clock_t;
18
19 clock_t times(struct tms *);
20
21 #endif /* _SYS_TIMES_H */