Adding upstream version 4.00~pre53+dfsg.
[syslinux-debian/hramrach.git] / com32 / include / sys / times.h
blob961c7b6d666fbe2e6b39395aacc8de3619bedf9c
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 */