summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdtime/asctime.c
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>1998-04-19 06:47:25 +0000
committerphk <phk@FreeBSD.org>1998-04-19 06:47:25 +0000
commit6d7eb64b154e7f047a65106576dd82344464d1c4 (patch)
tree0dda0ba870015247bab30960b84ca60fcf8eb871 /lib/libc/stdtime/asctime.c
parent538a55c2428a63d5e8d41bde9560d3afb3009433 (diff)
downloadFreeBSD-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/asctime.c')
-rw-r--r--lib/libc/stdtime/asctime.c15
1 files changed, 12 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;
OpenPOWER on IntegriCloud