diff options
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/stdtime/asctime.c | 15 | ||||
-rw-r--r-- | lib/libc/stdtime/localtime.c | 9 |
2 files changed, 21 insertions, 3 deletions
diff --git a/lib/libc/stdtime/asctime.c b/lib/libc/stdtime/asctime.c index a1834b6..832f185 100644 --- a/lib/libc/stdtime/asctime.c +++ b/lib/libc/stdtime/asctime.c @@ -18,9 +18,20 @@ static char elsieid[] = "@(#)asctime.c 7.7"; ** A la X3J11, with core dump avoidance. */ + char * asctime(timeptr) -register const struct tm * timeptr; +const struct tm * timeptr; +{ + static char result[3 * 2 + 5 * INT_STRLEN_MAXIMUM(int) + + 3 + 2 + 1 + 1]; + return(asctime_r(timeptr, result)); +} + +char * +asctime_r(timeptr, result) +const struct tm * timeptr; +char *result; { static const char wday_name[][3] = { "Sun", "Mon", "Tue", "Wed", "Thu", "Fri", "Sat" @@ -36,8 +47,6 @@ register const struct tm * timeptr; ** three explicit spaces, two explicit colons, a newline, ** and a trailing ASCII nul). */ - static char result[3 * 2 + 5 * INT_STRLEN_MAXIMUM(int) + - 3 + 2 + 1 + 1]; register const char * wn; register const char * mn; diff --git a/lib/libc/stdtime/localtime.c b/lib/libc/stdtime/localtime.c index 5de39d6..61614c7 100644 --- a/lib/libc/stdtime/localtime.c +++ b/lib/libc/stdtime/localtime.c @@ -1345,6 +1345,15 @@ const time_t * const timep; return asctime(localtime(timep)); } +char * +ctime_r(timep, buf) +const time_t * const timep; +char *buf; +{ + struct tm tm; + return asctime_r(localtime_r(timep, &tm), buf); +} + /* ** Adapted from code provided by Robert Elz, who writes: ** The "best" way to do mktime I think is based on an idea of Bob |