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