update math.h: const macro conformance fixes, bithack update, warning fix
[libm] / src / math / ldexpl.c
1 #include "libm.h"
2 long double ldexpl(long double x, int n)
3 {
4         return scalbnl(x, n);
5 }