summaryrefslogtreecommitdiff
path: root/libc/misc/time/gmtime_r.c
blob: 00c41b349f28dde9f9a3f7ad445125d5c65b3414 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14

#include <time.h>

extern void __tm_conv();

struct tm *
gmtime_r(timep, tp)
__const time_t * timep;
struct tm * tp;
{
   __tm_conv(tp, timep, 0L);
   return tp;
}