aboutsummaryrefslogtreecommitdiffstats
path: root/src/strftime.c
diff options
context:
space:
mode:
authorUlrich Drepper1997-11-13 01:17:00 +0000
committerUlrich Drepper1997-11-13 01:17:00 +0000
commit649e97a3c5266091e6486d7698e2072c3f97b78e (patch)
treebc1d5e0eba3ee6bba0f5045c3b62f52713da756f /src/strftime.c
parent4dab1e80fa5e80fa46d12deaab7f52ea0c81ad3f (diff)
downloademacs-649e97a3c5266091e6486d7698e2072c3f97b78e.tar.gz
emacs-649e97a3c5266091e6486d7698e2072c3f97b78e.zip
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)
184 return tp; 184 return tp;
185} 185}
186# endif /* ! HAVE_LOCALTIME_R */ 186# endif /* ! HAVE_LOCALTIME_R */
187#endif /* ! defined (_LIBC) */ 187#endif /* ! defined _LIBC */
188 188
189 189
190#if !defined memset && !defined HAVE_MEMSET && !defined _LIBC 190#if !defined memset && !defined HAVE_MEMSET && !defined _LIBC
@@ -204,7 +204,7 @@ static const char zeroes[16] = /* "0000000000000000" */
204 do \ 204 do \
205 { \ 205 { \
206 int _this = _len > 16 ? 16 : _len; \ 206 int _this = _len > 16 ? 16 : _len; \
207 (P) = mempcpy ((P), spaces, _this); \ 207 (P) = MEMPCPY ((P), spaces, _this); \
208 _len -= _this; \ 208 _len -= _this; \
209 } \ 209 } \
210 while (_len > 0); \ 210 while (_len > 0); \
@@ -217,7 +217,7 @@ static const char zeroes[16] = /* "0000000000000000" */
217 do \ 217 do \
218 { \ 218 { \
219 int _this = _len > 16 ? 16 : _len; \ 219 int _this = _len > 16 ? 16 : _len; \
220 (P) = mempcpy ((P), zeroes, _this); \ 220 (P) = MEMPCPY ((P), zeroes, _this); \
221 _len -= _this; \ 221 _len -= _this; \
222 } \ 222 } \
223 while (_len > 0); \ 223 while (_len > 0); \