summaryrefslogtreecommitdiff
path: root/time/strftime.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-08-30 18:31:38 +0000
committerUlrich Drepper <drepper@redhat.com>2000-08-30 18:31:38 +0000
commite668889af26990931a9103918a395ef2033fb846 (patch)
treef4a0666cbdb0e781d210f135eb35f1dce7b89577 /time/strftime.c
parentdb7dc81100c128593c20083e3891fc05941729bf (diff)
Update.
* time/strftime.c (my_strftime): Add compatibility code for use outside glibc. Patch by Jim Meyering <meyering@ascend.com>.
Diffstat (limited to 'time/strftime.c')
-rw-r--r--time/strftime.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/time/strftime.c b/time/strftime.c
index abda62b4a4..95dbae1850 100644
--- a/time/strftime.c
+++ b/time/strftime.c
@@ -83,6 +83,10 @@ extern char *tzname[];
# include <stddef.h>
# include <stdlib.h>
# include <string.h>
+#else
+# ifndef HAVE_MEMCPY
+# define memcpy(d, s, n) bcopy ((s), (d), (n))
+# endif
#endif
#ifdef COMPILE_WIDE
@@ -816,6 +820,14 @@ my_strftime (s, maxsize, format, tp ut_argument)
char *u = ufmt;
char ubuf[1024]; /* enough for any single format in practice */
size_t len;
+ /* Make sure we're calling the actual underlying strftime.
+ In some cases, config.h contains something like
+ "#define strftime rpl_strftime". */
+# ifdef strftime
+# undef strftime
+ size_t strftime ();
+# endif
+
*u++ = '%';
if (modifier != 0)
*u++ = modifier;