Sign in
cobalt
/
cobalt
/
788710a0d7b1b8d8e2340dd5fad5e8783a239862
/
.
/
third_party
/
musl
/
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
);
}