Sign in
android
/
platform
/
external
/
musl
/
290db7ffda2590ff26037056c50d367583af0069
/
.
/
compat
/
time32
/
stime32.c
blob: cc76364d3b91e1e8c6f9718a6a90667c3d4934a9 [
file
] [
log
] [
blame
]
#define
_GNU_SOURCE
#include
"time32.h"
#include
<time.h>
int
__stime32
(
const
time32_t
*
t
)
{
return
stime
(&(
time_t
){*
t
});
}