summaryrefslogtreecommitdiffstats
path: root/lib/msun/src/s_frexp.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/msun/src/s_frexp.c')
-rw-r--r--lib/msun/src/s_frexp.c9
1 files changed, 0 insertions, 9 deletions
diff --git a/lib/msun/src/s_frexp.c b/lib/msun/src/s_frexp.c
index 178479d..d3ce446 100644
--- a/lib/msun/src/s_frexp.c
+++ b/lib/msun/src/s_frexp.c
@@ -27,19 +27,10 @@ static char rcsid[] = "$FreeBSD$";
#include "math.h"
#include "math_private.h"
-#ifdef __STDC__
static const double
-#else
-static double
-#endif
two54 = 1.80143985094819840000e+16; /* 0x43500000, 0x00000000 */
-#ifdef __STDC__
double frexp(double x, int *eptr)
-#else
- double frexp(x, eptr)
- double x; int *eptr;
-#endif
{
int32_t hx, ix, lx;
EXTRACT_WORDS(hx,lx,x);
OpenPOWER on IntegriCloud