blob: 6a477b6d0a1644a8f63395a051e41a7729c2b88b [file] [log] [blame]
#include "time_impl.h"
char* asctime_r(const struct tm* restrict tm, char* restrict buf) {
return __asctime(tm, buf);
}