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