65816-llvm-mos/runtime/include/time.h
Scott Duensing 6d7eae0356 Checkpoint.
2026-04-30 01:29:16 -05:00

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