Sign in
android
/
platform
/
external
/
musl
/
290db7ffda2590ff26037056c50d367583af0069
/
.
/
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
});
}