mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-20 10:42:21 +00:00
11 lines
160 B
C
11 lines
160 B
C
#include <time.h>
|
|
|
|
/* Global timezone variables. */
|
|
|
|
/* Default timezone to GMT */
|
|
char *_tzname[2] = {"GMT", "GMT"};
|
|
int _daylight = 0;
|
|
long _timezone = 0;
|
|
|
|
|