mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 07:07:20 +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;
|
||
|
|
||
|
|