diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-05-11 05:40:55 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-05-11 05:40:55 +0000 |
commit | fd15708e6476164990e7b364dc5b2aa1600f8e89 (patch) | |
tree | 7627bd8a8c546f2fafd99fb52c1f96fdf4b242ce /libc/misc/time/ctime_r.c | |
parent | a4f07581502ee212aa45e7b0049fdd126dd10b40 (diff) |
Begin the process of reworking the time functions for proper
time zone and locale support (in theory). More work is
still needed.
-Erik
Diffstat (limited to 'libc/misc/time/ctime_r.c')
-rw-r--r-- | libc/misc/time/ctime_r.c | 24 |
1 files changed, 4 insertions, 20 deletions
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 <time.h> #include <sys/time.h> -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; -} |