diff options
Diffstat (limited to 'time/strftime.c')
-rw-r--r-- | time/strftime.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/time/strftime.c b/time/strftime.c index e66a444d40..0ebc913090 100644 --- a/time/strftime.c +++ b/time/strftime.c @@ -182,7 +182,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 @@ -202,7 +202,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); \ @@ -215,7 +215,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); \ |