Sign in
cobalt
/
cobalt.git
/
56d7c4e1a836a7ef6e2823bffb8d1567758b82eb
/
.
/
third_party
/
musl
/
src
/
time
/
gmtime.c
blob: 6320b6377e62310dfde727d165085e162480d7d2 [
file
]
#include
"time_impl.h"
#include
<errno.h>
struct
tm
*
gmtime
(
const
time_t
*
t
)
{
static
struct
tm tm
;
return
__gmtime_r
(
t
,
&
tm
);
}