summaryrefslogtreecommitdiff
path: root/src/time/asctime_r.c
blob: e51b88045aee24535101c6e4543c22420cb27a29 (plain) (blame)
1
2
3
4
5
6
7
8
#include <time.h>

char *__asctime(const struct tm *, char *);

char *asctime_r(const struct tm *tm, char *buf)
{
	return __asctime(tm, buf);
}