asctime_r.c 144 B

12345678
  1. #include <time.h>
  2. char *__asctime(const struct tm *, char *);
  3. char *asctime_r(const struct tm *tm, char *buf)
  4. {
  5. return __asctime(tm, buf);
  6. }