57d15fe0af4ca377b29e61f72a90435b1619ed3a
[musl] / src / time / asctime.c
1 #include <time.h>
2
3 char *__asctime_r(const struct tm *, char *);
4
5 char *asctime(const struct tm *tm)
6 {
7         static char buf[26];
8         return __asctime_r(tm, buf);
9 }