1 /* Copyright (c) 2005 Jeff Johnston <jjohnstn@redhat.com> */
2 #include <sys/types.h>
3 #include "local.h"
4 
5 /* Shared timezone information for libc/time functions.  */
6 static __tzinfo_type tzinfo = {1, 0,
7     { {'J', 0, 0, 0, 0, (time_t)0, 0L },
8       {'J', 0, 0, 0, 0, (time_t)0, 0L }
9     }
10 };
11 
12 __tzinfo_type *
__gettzinfo(void)13 __gettzinfo (void)
14 {
15   return &tzinfo;
16 }
17