Sign in
opensecura
/
3p
/
sel4
/
musllibc
/
4a8335b2248d934e2e40386af4f1b0495b3c173d
/
.
/
src
/
time
/
asctime_r.c
blob: 7dfbb1210371b3d281b81f0bf443a6337a41eee0 [
file
]
#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
);
}