From 50f81fd74b78d407477b9b39c2034c87471b6cef Mon Sep 17 00:00:00 2001 From: "David S. Miller" Date: Wed, 18 Apr 2012 16:19:10 -0700 Subject: Remove all traces of reg_char. * sysdeps/generic/memcopy.h (reg_char): Delete. * debug/strcat_chk.c: Use char, not reg_char. * debug/strcpy_chk.c: Likewise. * debug/strncat_chk.c: Likewise. * debug/strncpy_chk.c: Likewise. * string/memchr.c: Likewise. * string/memrchr.c: Likewise. * string/rawmemchr.c: Likewise. * string/strcat.c: Likewise. * string/strchr.c: Likewise. * string/strchrnul.c: Likewise. * string/strcmp.c: Likewise. * string/strcpy.c: Likewise. * string/strncat.c: Likewise. * string/strncmp.c: Likewise. * string/strncpy.c: Likewise. --- string/strncpy.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'string/strncpy.c') diff --git a/string/strncpy.c b/string/strncpy.c index f6ee27832d..19d501e06b 100644 --- a/string/strncpy.c +++ b/string/strncpy.c @@ -27,7 +27,7 @@ char * STRNCPY (char *s1, const char *s2, size_t n) { - reg_char c; + char c; char *s = s1; --s1; -- cgit v1.2.3