use #if LDBL_MANT_DIG == ... instead of custom LD80 etc macros
[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 }