1#include <time.h>
2
3char *__asctime(const struct tm *, char *);
4
5char *asctime(const struct tm *tm)
6{
7	static char buf[26];
8	return __asctime(tm, buf);
9}
10