fixed some lint complaints

This commit is contained in:
ceriel
1991-09-30 16:24:45 +00:00
parent 8e572d417b
commit e7b4e265d4
10 changed files with 24 additions and 29 deletions

View File

@@ -13,7 +13,6 @@ int
atoi(register const char *nptr)
{
int total = 0;
register unsigned int digit;
int minus = 0;
while (isspace(*nptr)) nptr++;

View File

@@ -13,7 +13,6 @@ long
atol(register const char *nptr)
{
long total = 0;
register unsigned int digit;
int minus = 0;
while (isspace(*nptr)) nptr++;

View File

@@ -697,7 +697,6 @@ _dbl_ext_cvt(double value, struct EXTEND *e)
/* Convert double to extended
*/
int exponent;
register int i;
value = frexp(value, &exponent);
e->sign = value < 0.0;