15 lines
228 B
C
15 lines
228 B
C
|
#include <math.h>
|
||
|
#include <errno.h>
|
||
|
|
||
|
|
||
|
long double ldexpl(long double x, int expn)
|
||
|
{
|
||
|
if (isfinite (x) && x != 0.0L)
|
||
|
{
|
||
|
x = scalbnl (x , expn);
|
||
|
if (!isfinite (x) || x == 0.0) errno = ERANGE;
|
||
|
}
|
||
|
return x;
|
||
|
}
|
||
|
|