1 2 3 4 5 6
#include <math.h> // for ldexp, scalbn double ldexp(double x, int n) { return scalbn(x, n); }