ldexpf.c 75 B

123456
  1. #include <math.h>
  2. float ldexpf(float x, int n)
  3. {
  4. return scalbnf(x, n);
  5. }