Sign in
mojo
/
mojo-tools
/
7d579155cc597aa3befcbfad66eef54bda06b57c
/
.
/
fusl
/
src
/
time
/
gmtime.c
blob: 9c9fc72b78b1b05ea296a04f1a69a98f47f8befb [
file
] [
log
] [
blame
]
#include
"time_impl.h"
#include
<errno.h>
struct
tm
*
__gmtime_r
(
const
time_t
*
restrict
,
struct
tm
*
restrict
);
struct
tm
*
gmtime
(
const
time_t
*
t
)
{
static
struct
tm tm
;
return
__gmtime_r
(
t
,
&
tm
);
}