diff options
Diffstat (limited to 'libc/misc/time/localtime_r.c')
-rw-r--r-- | libc/misc/time/localtime_r.c | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/libc/misc/time/localtime_r.c b/libc/misc/time/localtime_r.c deleted file mode 100644 index 139864506..000000000 --- a/libc/misc/time/localtime_r.c +++ /dev/null @@ -1,22 +0,0 @@ - -#include <time.h> -#include <sys/time.h> - -extern void __tm_conv(); - -struct tm *localtime_r(timep, tp) -__const time_t *timep; -struct tm *tp; -{ - struct timezone tz; - time_t offt; - - gettimeofday((void *) 0, &tz); - - offt = -tz.tz_minuteswest * 60L; - - /* tmb.tm_isdst = ? */ - __tm_conv(tp, timep, offt); - - return tp; -} |