1 #include <sys/cdefs.h> 2 /* 3 * ldexp() and scalbn() are defined to be identical, but ldexp() lives in libc 4 * for backwards compatibility. 5 */ 6 #define scalbn ldexp 7 #include "../../msun/src/s_scalbn.c" 8 #undef scalbn 9