summaryrefslogtreecommitdiffstats
path: root/newlib/libc/time/gettzinfo.c
blob: be754f31bf19f255c8f44ec594168c563c41e7eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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, 0 },
      {'J', 0, 0, 0, 0, (time_t)0, 0 } 
    } 
};

__tzinfo_type *
__gettzinfo (void)
{
  return &tzinfo;
}