Files
c64-demo-cpp/oscar64/include/time.h
T
2026-07-18 20:34:55 +02:00

13 lines
138 B
C

#ifndef TIME_H
#define TIME_H
typedef long clock_t;
#define CLOCKS_PER_SEC 60L
clock_t clock(void);
#pragma compile("time.c")
#endif