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