1#include "time_impl.h"
2
3char* asctime(const struct tm* tm) {
4    static char buf[26];
5    return __asctime(tm, buf);
6}
7