fixed lint complaints

This commit is contained in:
ceriel 1991-09-30 16:12:08 +00:00
parent 8d25f69e77
commit 8e572d417b
2 changed files with 1 additions and 3 deletions

View file

@ -12,7 +12,6 @@
double
fmod(double x, double y)
{
long i;
double val;
double frac;
@ -27,7 +26,7 @@ fmod(double x, double y)
/*
val = x / y;
if (val > LONG_MIN && val < LONG_MAX) {
i = val;
long i = val;
return x - i * y;
}
*/

View file

@ -30,7 +30,6 @@ sinus(double x, int cos_flag)
0.27204790957888846175e-14
};
double xsqr;
double y;
int neg = 1;