botch and clear have an unsigned as second arg

This commit is contained in:
ceriel 1987-05-18 14:16:41 +00:00
parent 11754b7cfb
commit 956d937a89
2 changed files with 2 additions and 2 deletions

View File

@ -12,7 +12,7 @@
EXPORT
botch(ptr, n)
register char *ptr;
register int n;
register unsigned int n;
{
while (n >= sizeof (long)) {
/* high-speed botch loop */

View File

@ -12,7 +12,7 @@
EXPORT
clear(ptr, n)
register char *ptr;
register int n;
register unsigned int n;
{
register long *q = (long *) ptr;