time.c (104B)
1 /* Time is endless */ 2 3 #include "types.h" 4 5 typedef struct { 6 u32 counter; 7 u32 target; 8 } time_t; 9