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