blob: ac1851177f1f86ff4f2950cd38fab9f2863646fa [file] [log] [blame]
#include "time_impl.h"
char* asctime(const struct tm* tm) {
static char buf[26];
return __asctime(tm, buf);
}