summaryrefslogtreecommitdiff
path: root/debug/stpcpy_chk.c
diff options
context:
space:
mode:
authorJoseph Myers <joseph@codesourcery.com>2013-06-07 22:24:35 +0000
committerJoseph Myers <joseph@codesourcery.com>2013-06-07 22:24:35 +0000
commit2e09a79ada1f6d92809a037d41895e3d9302ad59 (patch)
tree999c9d18279a7de289937116273ae4016356aa3a /debug/stpcpy_chk.c
parent8e254d8e0d0820716e0ccf5f2b89c4fd1325f051 (diff)
Avoid use of "register" as optimization hint.
Diffstat (limited to 'debug/stpcpy_chk.c')
-rw-r--r--debug/stpcpy_chk.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/debug/stpcpy_chk.c b/debug/stpcpy_chk.c
index cdf052ebbb..b16b83d16e 100644
--- a/debug/stpcpy_chk.c
+++ b/debug/stpcpy_chk.c
@@ -29,8 +29,8 @@ __stpcpy_chk (dest, src, destlen)
const char *src;
size_t destlen;
{
- register char *d = dest;
- register const char *s = src;
+ char *d = dest;
+ const char *s = src;
do
{