21 lines
269 B
C
21 lines
269 B
C
|
#ifndef _TIME_H_
|
||
|
#define _TIME_H_
|
||
|
|
||
|
typedef long clock_t;
|
||
|
typedef long time_t;
|
||
|
|
||
|
#define CLOCKS_PER_SEC 1000
|
||
|
#define CLK_TCK CLOCKS_PER_SEC
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
extern "C" {
|
||
|
#endif
|
||
|
|
||
|
// ToDo: add function prototypes...
|
||
|
|
||
|
#ifdef __cplusplus
|
||
|
}
|
||
|
#endif
|
||
|
|
||
|
#endif /* _TIME_H_ */
|