summaryrefslogtreecommitdiffstats
path: root/lib/msun
diff options
context:
space:
mode:
authorbde <bde@FreeBSD.org>2005-11-18 05:03:12 +0000
committerbde <bde@FreeBSD.org>2005-11-18 05:03:12 +0000
commit63ac8a6c5f4fc8da1471573289519319fe410078 (patch)
tree56669eacd18f6f154069ef0c63640e72d65e9a32 /lib/msun
parent536960dbba6409b86ac8cba48c8eebec0ee4d3bc (diff)
downloadFreeBSD-src-63ac8a6c5f4fc8da1471573289519319fe410078.zip
FreeBSD-src-63ac8a6c5f4fc8da1471573289519319fe410078.tar.gz
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.
Diffstat (limited to 'lib/msun')
-rw-r--r--lib/msun/bsdsrc/mathimpl.h10
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/msun/bsdsrc/mathimpl.h b/lib/msun/bsdsrc/mathimpl.h
index 5c22e7d..04a4b6e 100644
--- a/lib/msun/bsdsrc/mathimpl.h
+++ b/lib/msun/bsdsrc/mathimpl.h
@@ -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_ */
OpenPOWER on IntegriCloud