musl/src/math/s_ldexpf.c
2011-02-12 00:22:29 -05:00

7 lines
75 B
C

#include <math.h>
float ldexpf(float x, int n)
{
return scalbnf(x, n);
}