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