root/src/system/libroot/posix/musl/math/ldexpf.c
#include <math.h>

float ldexpf(float x, int n)
{
        return scalbnf(x, n);
}