Sign in
mojo
/
mojo
/
abd459df00c19687f5f4d5290033ddbbc33d6583
/
.
/
fusl
/
src
/
time
/
asctime_r.c
blob: 1674836a315cb7a5d09c42b1771a725844627c3d [
file
] [
log
] [
blame
]
#include
<time.h>
char
*
__asctime
(
const
struct
tm
*
restrict
,
char
*
restrict
);
char
*
asctime_r
(
const
struct
tm
*
restrict tm
,
char
*
restrict buf
)
{
return
__asctime
(
tm
,
buf
);
}