Remove all traces of reg_char.
[jlayton/glibc.git] / string / memchr.c
index 7de21a6acc7434a8232bb0b1d01662073502de46..22637cf3a5a6b2e97d4f27da92a30716efdbb80b 100644 (file)
@@ -30,8 +30,6 @@
 #if defined _LIBC
 # include <string.h>
 # include <memcopy.h>
-#else
-# define reg_char char
 #endif
 
 #if HAVE_STDLIB_H || defined _LIBC
@@ -68,7 +66,7 @@ __memchr (s, c_in, n)
   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;