1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-06-12 08:21:58 +03:00

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.
This commit is contained in:
David S. Miller
2012-04-18 16:19:10 -07:00
parent 8ff41c4601
commit 50f81fd74b
17 changed files with 35 additions and 27 deletions

View File

@ -19,8 +19,6 @@
#ifdef _LIBC
# include <memcopy.h>
#else
typedef char reg_char;
#endif
#ifndef STRNCAT
@ -31,7 +29,7 @@ typedef char reg_char;
char *
STRNCAT (char *s1, const char *s2, size_t n)
{
reg_char c;
char c;
char *s = s1;
/* Find the end of S1. */