Sign in
android
/
platform
/
external
/
musl
/
23e8e5196456b787d5e78c4744b76946a8535732
/
.
/
compat
/
time32
/
gmtime32.c
blob: 963f0e0525983be3a31e8493511bbadf1afcd0aa [
file
] [
log
] [
blame
]
#include
"time32.h"
#include
<time.h>
struct
tm
*
__gmtime32
(
time32_t
*
t
)
{
return
gmtime
(&(
time_t
){*
t
});
}