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