summaryrefslogtreecommitdiffstats
path: root/contrib/syslinux-4.02/com32/include/sys/times.h
blob: 90470063dc18150a5b3fcf863d1756241a1c6680 (plain) (blame)
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		1000
#define CLK_TCK		HZ

typedef uint32_t clock_t;

clock_t times(struct tms *);

#endif /* _SYS_TIMES_H */