Sign in
android
/
platform
/
external
/
musl
/
refs/heads/android14-prebuilt-test
/
.
/
compat
/
time32
/
localtime32_r.c
blob: 633ec8293f1fd630b53b988b8cde85f9c8b05679 [
file
] [
log
] [
blame
]
Rich Felker
c045032
2019-08-02 15:52:42 -0400
[
diff
] [
blame
]
1
#include
"time32.h"
2
#include
<time.h>
3
4
struct
tm
*
__localtime32_r
(
time32_t
*
t
,
struct
tm
*
tm
)
5
{
6
return
localtime_r
(&(
time_t
){*
t
},
tm
);
7
}