Changed the argument of salloc from an int into an unsigned.

Just to shut up lint.
This commit is contained in:
keie 1985-01-21 14:22:07 +00:00
parent a91ff9e04b
commit d53ef52028

View file

@ -61,12 +61,12 @@ int i;
}
char *salloc(length)
int length;
unsigned length;
{
char *s,*c;
extern char *malloc() ;
s=c= malloc(length);
while(length-->0)*c++ =0;
while(length--)*c++ =0;
return(s);
}