Sign in
android
/
platform
/
external
/
musl
/
aa59d7880b1194c821029d464f93561a2600d57e
/
.
/
src
/
time
/
asctime.c
blob: 1febe54409e4c601849a6cf28c0f3cf16947737a [
file
] [
log
] [
blame
]
#include
<time.h>
char
*
asctime
(
const
struct
tm
*
tm
)
{
static
char
buf
[
26
];
return
__asctime_r
(
tm
,
buf
);
}