summaryrefslogtreecommitdiff
path: root/com32/include/sys/times.h
blob: 961c7b6d666fbe2e6b39395aacc8de3619bedf9c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
/*
 * sys/times.h
 */

#ifndef _SYS_TIMES_H
#define _SYS_TIMES_H

#include <stdint.h>

struct tms {
    /* Empty */
};

#define HZ		18	/* Piddly resolution... */
#define CLK_TCK		HZ

typedef uint16_t clock_t;

clock_t times(struct tms *);

#endif /* _SYS_TIMES_H */