PythonExtra/lib/libm_dbl/ldexp.c

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

7 lines
75 B
C
Raw Normal View History

#include <math.h>
double ldexp(double x, int n)
{
return scalbn(x, n);
}