about summary refs log tree commit diff
path: root/time/ctime_r.c
diff options
context:
space:
mode:
Diffstat (limited to 'time/ctime_r.c')
-rw-r--r--time/ctime_r.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/time/ctime_r.c b/time/ctime_r.c
index d695c7c2e2..f9a198d6b3 100644
--- a/time/ctime_r.c
+++ b/time/ctime_r.c
@@ -1,5 +1,5 @@
-/* ctime_r - return in BUF representation of time T in form of asctime
-   Copyright (C) 1996 Free Software Foundation, Inc.
+/* Return in BUF representation of time T in form of asctime
+   Copyright (C) 1996, 1998 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
    Contributed by Ulrich Drepper <drepper@cygnus.com>, 1996.
 
@@ -26,5 +26,5 @@ char *
 ctime_r (const time_t *t, char *buf)
 {
   struct tm tm;
-  return asctime_r (localtime_r (t, &tm), buf);
+  return __asctime_r (__localtime_r (t, &tm), buf);
 }