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