Gitiles
Code Review
Sign In
gerrit-public.fairphone.software
/
platform
/
external
/
musl
/
4d4a665799a0ed6dda3deed3d380b72c84d9f4d2
/
.
/
src
/
time
/
asctime.c
blob: 3102eb87388c0dea83cd01b115ee15a392e9a6a8 [
file
] [
log
] [
blame
]
#include
<time.h>
char
*
__asctime
(
const
struct
tm
*,
char
*);
char
*
asctime
(
const
struct
tm
*
tm
)
{
static
char
buf
[
26
];
return
__asctime
(
tm
,
buf
);
}