summaryrefslogtreecommitdiff
path: root/libc/misc/time/localtime.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc/misc/time/localtime.c')
-rw-r--r--libc/misc/time/localtime.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/libc/misc/time/localtime.c b/libc/misc/time/localtime.c
deleted file mode 100644
index 22f5035e9..000000000
--- a/libc/misc/time/localtime.c
+++ /dev/null
@@ -1,24 +0,0 @@
-
-#include <time.h>
-#include <sys/time.h>
-
-/* Our static data lives in __time_static.c */
-extern struct tm __tmb;
-
-
-extern void __tm_conv();
-
-struct tm *localtime(__const time_t *timep)
-{
- struct timezone tz;
- time_t offt;
-
- gettimeofday((void *) 0, &tz);
-
- offt = -tz.tz_minuteswest * 60L;
-
- /* tmb.tm_isdst = ? */
- __tm_conv(&__tmb, timep, offt);
-
- return &__tmb;
-}