diff options
author | phk <phk@FreeBSD.org> | 1998-04-19 06:47:25 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 1998-04-19 06:47:25 +0000 |
commit | 6d7eb64b154e7f047a65106576dd82344464d1c4 (patch) | |
tree | 0dda0ba870015247bab30960b84ca60fcf8eb871 /lib/libc/stdtime/localtime.c | |
parent | 538a55c2428a63d5e8d41bde9560d3afb3009433 (diff) | |
download | FreeBSD-src-6d7eb64b154e7f047a65106576dd82344464d1c4.zip FreeBSD-src-6d7eb64b154e7f047a65106576dd82344464d1c4.tar.gz |
ctime_r and asctime_r are not implemented.
prototypes in time.h do not match POSIX.
PR: 6345
Reviewed by: phk
Submitted by: Dmitry Khrustalev <dima@xyzzy.machaon.ru>
Diffstat (limited to 'lib/libc/stdtime/localtime.c')
-rw-r--r-- | lib/libc/stdtime/localtime.c | 9 |
1 files changed, 9 insertions, 0 deletions
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 |