musl/src/time/asctime_r.c

9 lines
144 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <time.h>
char *__asctime(const struct tm *, char *);
char *asctime_r(const struct tm *tm, char *buf)
{
return __asctime(tm, buf);
}