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

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

char *asctime(const struct tm *tm)
{
	static char buf[26];
	return __asctime_r(tm, buf);
}