source: trunk/libs/newlib/src/newlib/libc/time/gettzinfo.c @ 444

Last change on this file since 444 was 444, checked in by satin@…, 6 years ago

add newlib,libalmos-mkh, restructure shared_syscalls.h and mini-libc

File size: 290 bytes
Line 
1#include <sys/types.h>
2#include <local.h>
3
4/* Shared timezone information for libc/time functions.  */
5static __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};
10
11__tzinfo_type *
12__gettzinfo (void)
13{
14  return &tzinfo;
15}
Note: See TracBrowser for help on using the repository browser.