Sign in
cobalt
/
cobalt
/
fc84fc2a551a0cf60d391fb3e7d8229e6f9a9daf
/
.
/
third_party
/
musl
/
compat
/
time32
/
localtime32.c
blob: 96bc303490106191ec6547d2f907da6720cb6f9c [
file
] [
log
] [
blame
]
#include
"time32.h"
#include
<time.h>
struct
tm
*
__localtime32
(
time32_t
*
t
)
{
return
localtime
(&(
time_t
){*
t
});
}