fixed some lint complaints
This commit is contained in:
@@ -13,7 +13,6 @@ int
|
||||
atoi(register const char *nptr)
|
||||
{
|
||||
int total = 0;
|
||||
register unsigned int digit;
|
||||
int minus = 0;
|
||||
|
||||
while (isspace(*nptr)) nptr++;
|
||||
|
||||
@@ -13,7 +13,6 @@ long
|
||||
atol(register const char *nptr)
|
||||
{
|
||||
long total = 0;
|
||||
register unsigned int digit;
|
||||
int minus = 0;
|
||||
|
||||
while (isspace(*nptr)) nptr++;
|
||||
|
||||
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user