summaryrefslogtreecommitdiff
path: root/mit-pthreads/machdep/hpux-9.03/__time.h
blob: ae958dcc3cf0313f0cea05059071f9c83a05f1f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
/* $Id$ */

#ifndef __sys_stdtypes_h

#ifndef _SYS__TIME_H_
#define	_SYS__TIME_H_

#ifndef	_CLOCK_T
#define	_CLOCK_T
typedef	long	clock_t;
#endif

#ifndef	_TIME_T
#define _TIME_T
typedef	long	time_t;
#endif

#ifndef	_SIZE_T
#define _SIZE_T
typedef	unsigned int	size_t;
#endif

#define CLOCKS_PER_SEC	1000000

#if !defined(_ANSI_SOURCE) && !defined(CLK_TCK)
#define CLK_TCK		60
#endif /* not ANSI */

#endif

#endif /* !_SYS__TIME_H_ */