xref: /freebsd/lib/libc/gen/ldexp.c (revision 8ccc0d235c226d84112561d453c49904398d085c)
1 /*
2  * ldexp() and scalbn() are defined to be identical, but ldexp() lives in libc
3  * for backwards compatibility.
4  */
5 #define scalbn ldexp
6 #include "../../msun/src/s_scalbn.c"
7 #undef scalbn
8