blob: eb4c8347370e9c971f7c89698c6dd357cdfc2e76 [file] [log] [blame]
#include <math.h>
double ldexp(double x, int n) {
return scalbn(x, n);
}