4
0
mirror of git://sourceware.org/git/newlib-cygwin.git synced 2025-01-16 11:31:00 +08:00

16 lines
290 B
C
Raw Normal View History

#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;
}