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