Removed an unused declaration which was so old that it wasn't a prototype

and thus just broke building at any nonzero WARNS level.

Fixed nearby style bugs.
This commit is contained in:
Bruce Evans 2005-11-18 05:03:12 +00:00
parent a7e69e8b7d
commit 3f1a8f462c
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=152566

View File

@ -60,13 +60,15 @@ _b_trunc(volatile double *_dp)
SET_LOW_WORD(*_dp, _lw & 0xf8000000);
}
struct Double {
double a;
double b;
};
/*
* Functions internal to the math package, yet not static.
*/
extern double __exp__E();
struct Double {double a, b;};
double __exp__D(double, double);
double __exp__D(double, double);
struct Double __log__D(double);
#endif /* !_MATHIMPL_H_ */