forked from Imagelibrary/binutils-gdb
Synced with libiberty in the gcc repository.
This commit is contained in:
@@ -25,8 +25,8 @@ int
|
||||
DEFUN(memcmp, (str1, str2, count),
|
||||
const PTR str1 AND const PTR str2 AND size_t count)
|
||||
{
|
||||
register unsigned char *s1 = (unsigned char*)str1;
|
||||
register unsigned char *s2 = (unsigned char*)str2;
|
||||
register const unsigned char *s1 = (const unsigned char*)str1;
|
||||
register const unsigned char *s2 = (const unsigned char*)str2;
|
||||
|
||||
while (count-- > 0)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user