Browse Source

2005-03-06 Ralf Corsepious <ralf.corsepius@rtems.org>


			
			
				msnyder-tracepoint-checkpoint-branch
			
			
		
Jeff Johnston 22 years ago
parent
commit
9d385fb06d
  1. 4
      newlib/ChangeLog
  2. 4
      newlib/libc/string/memcmp.c

4
newlib/ChangeLog

@ -1,3 +1,7 @@
2005-03-06 Ralf Corsepious <ralf.corsepius@rtems.org>
* libc/string/memcmp.c: Fix to avoid pointer signedness warning.
2005-03-06 Ralf Corsepious <ralf.corsepius@rtems.org>
* libc/include/machine/_types.h: New file.

4
newlib/libc/string/memcmp.c

@ -95,8 +95,8 @@ _DEFUN (memcmp, (m1, m2, n),
/* check m mod LBLOCKSIZE remaining characters */
s1 = (char*)a1;
s2 = (char*)a2;
s1 = (unsigned char*)a1;
s2 = (unsigned char*)a2;
}
while (n--)

Loading…
Cancel
Save