blob: 1674836a315cb7a5d09c42b1771a725844627c3d [file] [log] [blame]
#include <time.h>
char* __asctime(const struct tm* restrict, char* restrict);
char* asctime_r(const struct tm* restrict tm, char* restrict buf) {
return __asctime(tm, buf);
}