xref: /freebsd/lib/libc/gen/ldexp.c (revision 5b20c5e1f8d59f14901f0c0e4b6b577eaa3f9569)
1 #include <sys/cdefs.h>
2 __FBSDID("$FreeBSD$");
3 
4 /*
5  * ldexp() and scalbn() are defined to be identical, but ldexp() lives in libc
6  * for backwards compatibility.
7  */
8 #define scalbn ldexp
9 #include "../../msun/src/s_scalbn.c"
10 #undef scalbn
11