diff options
author | David S. Miller <davem@davemloft.net> | 2012-04-18 16:19:10 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-04-18 16:19:10 -0700 |
commit | 50f81fd74b78d407477b9b39c2034c87471b6cef (patch) | |
tree | 9c55958e4b975f413cc8a00c09595fdd91101b04 /debug/strncpy_chk.c | |
parent | 8ff41c4601f8b8d7dfa6682f596dc4071823424d (diff) | |
download | glibc-50f81fd74b78d407477b9b39c2034c87471b6cef.tar.gz glibc-50f81fd74b78d407477b9b39c2034c87471b6cef.tar.xz glibc-50f81fd74b78d407477b9b39c2034c87471b6cef.zip |
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.
Diffstat (limited to 'debug/strncpy_chk.c')
-rw-r--r-- | debug/strncpy_chk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/debug/strncpy_chk.c b/debug/strncpy_chk.c index 674d16033b..e34c1e5d67 100644 --- a/debug/strncpy_chk.c +++ b/debug/strncpy_chk.c @@ -26,7 +26,7 @@ __strncpy_chk (s1, s2, n, s1len) size_t n; size_t s1len; { - reg_char c; + char c; char *s = s1; if (__builtin_expect (s1len < n, 0)) |