ifndef __TIME_H
__TIME_H equ 0
size_t equ dword
time_t equ dword
clock_t equ dword
CLOCKS_PER_SEC equ 1000.0
CLK_TCK equ 1000.0
tm struct
tm_sec dd ?
tm_min dd ?
tm_hour dd ?
tm_mday dd ?
tm_mon dd ?
tm_year dd ?
tm_wday dd ?
tm_yday dd ?
tm_isdst dd ?
tm ends
_time proto,:dword ;this is time() but it needs a new name because
; time is already used by struct time <> in DOS.INC
clock proto
endif