Sign in
mojo
/
mojo
/
6fd33f6a3d027e12c5bfcbd8c43fe01c15b76e92
/
.
/
fusl
/
src
/
time
/
asctime.c
blob: eea793d59536dfad6111e6e3bfcca86df1d69789 [
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
);
}