Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git] / newlib / libc / time / gettzinfo.c
blobc28e72f0a85879c758341510acfc45cb00047461
1 #include <sys/types.h>
2 #include "local.h"
4 /* Shared timezone information for libc/time functions. */
5 static __tzinfo_type tzinfo = {1, 0,
6 { {'J', 0, 0, 0, 0, (time_t)0, 0L },
7 {'J', 0, 0, 0, 0, (time_t)0, 0L }
8 }
9 };
11 __tzinfo_type *
12 __gettzinfo (void)
14 return &tzinfo;