diff options
Diffstat (limited to 'string/strcpy.c')
-rw-r--r-- | string/strcpy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/string/strcpy.c b/string/strcpy.c index f565f34fcf..acc580ba3e 100644 --- a/string/strcpy.c +++ b/string/strcpy.c @@ -28,7 +28,7 @@ strcpy (dest, src) char *dest; const char *src; { - reg_char c; + char c; char *__unbounded s = (char *__unbounded) CHECK_BOUNDS_LOW (src); const ptrdiff_t off = CHECK_BOUNDS_LOW (dest) - s - 1; size_t n; |