blob: 3bad5f393f5a1f499ccb8c79c96856f760d30502 [file] [log] [blame]
#include <math.h>
float ldexpf(float x, int n)
{
return scalbnf(x, n);
}