aboutsummaryrefslogtreecommitdiff
path: root/src/time/asctime.c
blob: c3653023dad734910bf1335f234bb1912ccc4ecf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#include <time.h>

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


#ifdef TEST
int
main(void) {
	return 0;
}
#endif