Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
c1b39b203dc3614469f2581fa4d6146cf0ac2af0
/
.
/
src
/
time
/
gmtime_r.c
blob: 5b565a65c0967f8ac6ddcaa563663f738ca40fc6 [
file
] [
log
] [
blame
]
#include
<time.h>
#include
"__time.h"
struct
tm
*
gmtime_r
(
const
time_t
*
t
,
struct
tm
*
result
)
{
__time_to_tm
(*
t
,
result
);
result
->
tm_isdst
=
0
;
return
result
;
}