summary refs log tree commit diff
path: root/debug/stpcpy_chk.c
diff options
context:
space:
mode:
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
     {