localtime.c 191 B

123456789
  1. #include "time_impl.h"
  2. struct tm *__localtime_r(const time_t *restrict, struct tm *restrict);
  3. struct tm *localtime(const time_t *t)
  4. {
  5. static struct tm tm;
  6. return __localtime_r(t, &tm);
  7. }