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
commit174937c127de76672010738e5b48aaed5df519cb (patch)
treea4ac17abb303bf34ee674f808333e98591e35ee0 /src/strftime.c
parent3fd3437facc23ec3ce5a5408d2b66ad11ecf8a36 (diff)
downloademacs-174937c127de76672010738e5b48aaed5df519cb.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); \