1
0

ldexpl.c 87 B

123456
  1. #include <math.h>
  2. long double ldexpl(long double x, int n)
  3. {
  4. return scalbnl(x, n);
  5. }