use #if LDBL_MANT_DIG == ... instead of custom LD80 etc macros
[libm] / src / math / ldexpf.c
1 #include "libm.h"
2 float ldexpf(float x, int n)
3 {
4         return scalbnf(x, n);
5 }