mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 07:07:20 +00:00
16 lines
290 B
C
16 lines
290 B
C
|
#include <sys/types.h>
|
||
|
#include <local.h>
|
||
|
|
||
|
/* Shared timezone information for libc/time functions. */
|
||
|
static __tzinfo_type tzinfo = {1, 0,
|
||
|
{ {'J', 0, 0, 0, 0, (time_t)0, 0L },
|
||
|
{'J', 0, 0, 0, 0, (time_t)0, 0L }
|
||
|
}
|
||
|
};
|
||
|
|
||
|
__tzinfo_type *
|
||
|
__gettzinfo (void)
|
||
|
{
|
||
|
return &tzinfo;
|
||
|
}
|