select: overhaul for time64
[musl.git] / src / math / ldexp.c
blobf4d1cd6af5d8b815064251c9d3f062709f2d87d0
1 #include <math.h>
3 double ldexp(double x, int n)
5 return scalbn(x, n);