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