about summary refs log tree commit diff
path: root/string/memrchr.c
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2012-04-18 16:19:10 -0700
committerDavid S. Miller <davem@davemloft.net>2012-04-18 16:19:10 -0700
commit50f81fd74b78d407477b9b39c2034c87471b6cef (patch)
tree9c55958e4b975f413cc8a00c09595fdd91101b04 /string/memrchr.c
parent8ff41c4601f8b8d7dfa6682f596dc4071823424d (diff)
downloadglibc-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 'string/memrchr.c')
-rw-r--r--string/memrchr.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/string/memrchr.c b/string/memrchr.c
index 5a83a4a9c9..2826f13056 100644
--- a/string/memrchr.c
+++ b/string/memrchr.c
@@ -33,8 +33,6 @@
 #if defined _LIBC
 # include <string.h>
 # include <memcopy.h>
-#else
-# define reg_char char
 #endif
 
 #if defined HAVE_LIMITS_H || defined _LIBC
@@ -71,7 +69,7 @@ MEMRCHR
   const unsigned char *char_ptr;
   const unsigned long int *longword_ptr;
   unsigned long int longword, magic_bits, charmask;
-  unsigned reg_char c;
+  unsigned char c;
 
   c = (unsigned char) c_in;