Files
2026-08-01 16:11:49 +03:00

14 lines
229 B
C

#ifndef _TIME_H
#define _TIME_H
#define CLOCKS_PER_SEC 1000
typedef unsigned long long clock_t;
// Clock is just use for progress reporting, which we disable anyway.
inline clock_t clock() {
return 0;
}
#endif // _TIME_H