diff options
Diffstat (limited to 'libc/misc/time/gmtime_r.c')
-rw-r--r-- | libc/misc/time/gmtime_r.c | 12 |
1 files changed, 0 insertions, 12 deletions
diff --git a/libc/misc/time/gmtime_r.c b/libc/misc/time/gmtime_r.c deleted file mode 100644 index a1502e275..000000000 --- a/libc/misc/time/gmtime_r.c +++ /dev/null @@ -1,12 +0,0 @@ - -#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; -} |