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