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; 7 8 __tzinfo_type * __gettzinfo(void)9 __gettzinfo (void) 10 { 11 return &tzinfo; 12 } 13