repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git]
/
newlib
/
libc
/
time
/
gettzinfo.c
blob
c28e72f0a85879c758341510acfc45cb00047461
1
#include <sys/types.h>
2
#include
"local.h"
3
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
};
10
11
__tzinfo_type
*
12
__gettzinfo
(
void
)
13
{
14
return
&
tzinfo
;
15
}