From fd15708e6476164990e7b364dc5b2aa1600f8e89 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Sat, 11 May 2002 05:40:55 +0000 Subject: Begin the process of reworking the time functions for proper time zone and locale support (in theory). More work is still needed. -Erik --- libc/misc/time/ctime_r.c | 24 ++++-------------------- 1 file changed, 4 insertions(+), 20 deletions(-) (limited to 'libc/misc/time/ctime_r.c') diff --git a/libc/misc/time/ctime_r.c b/libc/misc/time/ctime_r.c index b608098ae..1b323a258 100644 --- a/libc/misc/time/ctime_r.c +++ b/libc/misc/time/ctime_r.c @@ -2,25 +2,9 @@ #include #include -extern void __tm_conv(); -extern void __asctime(); - -char *ctime_r(timep, buf) -__const time_t *timep; -char *buf; +char * ctime_r(const time_t *t, char *buf) { - struct tm tmb; - struct timezone tz; - time_t offt; - - gettimeofday((void *) 0, &tz); - - offt = -tz.tz_minuteswest * 60L; - - /* tmb.tm_isdst = ? */ - __tm_conv(&tmb, timep, offt); - - __asctime(buf, &tmb); + struct tm tm; + return asctime_r(localtime_r(t, &tm), buf); +} - return buf; -} -- cgit v1.2.3