localtime32_r.c 138 B

1234567
  1. #include "time32.h"
  2. #include <time.h>
  3. struct tm *__localtime32_r(time32_t *t, struct tm *tm)
  4. {
  5. return localtime_r(&(time_t){*t}, tm);
  6. }