ctime32_r.c 122 B

1234567
  1. #include "time32.h"
  2. #include <time.h>
  3. char *__ctime32_r(time32_t *t, char *buf)
  4. {
  5. return ctime_r(&(time_t){*t}, buf);
  6. }