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