diff options
Diffstat (limited to 'libc/misc/time/gmtime.c')
-rw-r--r-- | libc/misc/time/gmtime.c | 13 |
1 files changed, 0 insertions, 13 deletions
diff --git a/libc/misc/time/gmtime.c b/libc/misc/time/gmtime.c deleted file mode 100644 index e9d648037..000000000 --- a/libc/misc/time/gmtime.c +++ /dev/null @@ -1,13 +0,0 @@ - -#include <time.h> - -extern void __tm_conv(); - -/* Our static data lives in __time_static.c */ -extern struct tm __tmb; - -struct tm *gmtime(__const time_t *timep) -{ - __tm_conv(&__tmb, timep, 0L); - return &__tmb; -} |