musl-tcc/src/time/asctime.c

8 lines
110 B
C

#include <time.h>
char *asctime(const struct tm *tm)
{
static char buf[26];
return __asctime_r(tm, buf);
}