xref: /haiku/src/system/libroot/posix/musl/math/ldexp.c (revision 4e151bc3093293a8ab47aeae854dc80d04e9b41f)
1 #include <math.h>
2 
3 double ldexp(double x, int n)
4 {
5 	return scalbn(x, n);
6 }
7