gmtime_r.c 166 B

1234567891011121314
  1. #include <time.h>
  2. extern void __tm_conv();
  3. struct tm *
  4. gmtime_r(timep, tp)
  5. __const time_t * timep;
  6. struct tm * tp;
  7. {
  8. __tm_conv(tp, timep, 0L);
  9. return tp;
  10. }