Retro68/gcc/newlib/libc/stdlib/__exp10.c
Wolfgang Thaller ec13cc9ce7 fix newlib
2018-12-29 09:59:36 +01:00

30 lines
414 B
C

/*
* compute 10**x by successive squaring.
*/
#include <_ansi.h>
#include "std.h"
double
__exp10 (unsigned x)
{
static const double powtab[] =
{1.0,
10.0,
100.0,
1000.0,
10000.0};
if (x < (sizeof (powtab) / sizeof (double)))
return powtab[x];
else if (x & 1)
{
return 10.0 * __exp10 (x - 1);
}
else
{
double n = __exp10 (x / 2);
return n * n;
}
}