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