musl-tcc/src/time/asctime.c

8 lines
110 B
C
Raw Normal View History

2022-03-20 08:48:53 +00:00
#include <time.h>
char *asctime(const struct tm *tm)
{
static char buf[26];
return __asctime_r(tm, buf);
}