musl/src/math/s_ldexpf.c

7 lines
75 B
C
Raw Normal View History

2011-02-12 00:22:29 -05:00
#include <math.h>
float ldexpf(float x, int n)
{
return scalbnf(x, n);
}