12 lines
211 B
C
12 lines
211 B
C
#ifndef _TIME_H
|
|
#define _TIME_H
|
|
|
|
typedef long time_t;
|
|
typedef unsigned long clock_t;
|
|
|
|
#define CLOCKS_PER_SEC 60 // IIgs vsync tick (placeholder)
|
|
|
|
time_t time(time_t *t);
|
|
clock_t clock(void);
|
|
|
|
#endif
|