Files
gbdk-2020/gbdk-lib/libc/time.c
2022-02-20 00:56:40 +03:00

18 lines
324 B
C

/*
time.c
Simple, not completely conformant implementation of time routines
*/
#include <stdint.h>
/* clock() is in clock.s */
#include <time.h>
time_t time(time_t *t) {
uint16_t ret;
/* Should be relative to 0:00 1970 GMT but hey */
ret = clock() / CLOCKS_PER_SEC;
if (t) *t = ret;
return ret;
}