1#include "time_impl.h"
2
3char* asctime_r(const struct tm* restrict tm, char* restrict buf) {
4    return __asctime(tm, buf);
5}
6