gmtime_r.c 158 B

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