Adding upstream version 3.31.
[syslinux-debian/hramrach.git] / com32 / include / sys / times.h
blob8d03af0a5216b4fff3742e344d2b6cbbc6d762de
1 /*
2 * sys/times.h
3 */
5 #ifndef _SYS_TIMES_H
6 #define _SYS_TIMES_H
8 #include <stdint.h>
10 struct tms {
11 /* Empty */
14 #define HZ 18 /* Piddly resolution... */
15 #define CLK_TCK HZ
17 typedef uint16_t clock_t;
19 clock_t times(struct tms *);
21 #endif /* _SYS_TIMES_H */