summaryrefslogtreecommitdiff
path: root/src/strftime.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1997-11-13 01:17:00 +0000
committerUlrich Drepper <drepper@redhat.com>1997-11-13 01:17:00 +0000
commit649e97a3c5266091e6486d7698e2072c3f97b78e (patch)
treebc1d5e0eba3ee6bba0f5045c3b62f52713da756f /src/strftime.c
parent4dab1e80fa5e80fa46d12deaab7f52ea0c81ad3f (diff)
downloademacs-649e97a3c5266091e6486d7698e2072c3f97b78e.tar.gz
automatically generated from GPLed version
Diffstat (limited to 'src/strftime.c')
-rw-r--r--src/strftime.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/strftime.c b/src/strftime.c
index 50aed8ac76a..b084851a451 100644
--- a/src/strftime.c
+++ b/src/strftime.c
@@ -184,7 +184,7 @@ localtime_r (t, tp)
return tp;
}
# endif /* ! HAVE_LOCALTIME_R */
-#endif /* ! defined (_LIBC) */
+#endif /* ! defined _LIBC */
#if !defined memset && !defined HAVE_MEMSET && !defined _LIBC
@@ -204,7 +204,7 @@ static const char zeroes[16] = /* "0000000000000000" */
do \
{ \
int _this = _len > 16 ? 16 : _len; \
- (P) = mempcpy ((P), spaces, _this); \
+ (P) = MEMPCPY ((P), spaces, _this); \
_len -= _this; \
} \
while (_len > 0); \
@@ -217,7 +217,7 @@ static const char zeroes[16] = /* "0000000000000000" */
do \
{ \
int _this = _len > 16 ? 16 : _len; \
- (P) = mempcpy ((P), zeroes, _this); \
+ (P) = MEMPCPY ((P), zeroes, _this); \
_len -= _this; \
} \
while (_len > 0); \