Sign in
android
/
platform
/
external
/
musl
/
3da2b5cceae98f5098e62e7865fe6433c1e82775
/
.
/
src
/
time
/
gmtime.c
blob: 6320b6377e62310dfde727d165085e162480d7d2 [
file
] [
log
] [
blame
]
#include
"time_impl.h"
#include
<errno.h>
struct
tm
*
gmtime
(
const
time_t
*
t
)
{
static
struct
tm tm
;
return
__gmtime_r
(
t
,
&
tm
);
}