xref: /freebsd/lib/libc/gen/ldexp.c (revision 914752d0f7f874ab4fc8393aee28c22df87324f2)
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