Files
cc65/libsrc/rp6502/ria_tzset.c
2025-05-24 21:27:05 -07:00

10 lines
211 B
C

#include <rp6502.h>
#include <time.h>
int clock_gettimezone (time_t time, clockid_t clock_id, struct _timezone* tz);
void ria_tzset (unsigned long time)
{
clock_gettimezone (time, CLOCK_REALTIME, &_tz);
}