repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
riscv32: add dlsym
[musl.git]
/
src
/
time
/
asctime.c
blob
1febe54409e4c601849a6cf28c0f3cf16947737a
1
#include <time.h>
2
3
char
*
asctime
(
const struct
tm
*
tm
)
4
{
5
static char
buf
[
26
];
6
return
__asctime_r
(
tm
,
buf
);
7
}