aboutsummaryrefslogtreecommitdiff
path: root/lib/libc/gen/ldexp.c
blob: 1db62afc609e9f2a2a9df00bbc2d9b7bb236115d (plain) (blame)
1
2
3
4
5
6
7
/*
 * ldexp() and scalbn() are defined to be identical, but ldexp() lives in libc
 * for backwards compatibility.
 */
#define scalbn ldexp
#include "../../msun/src/s_scalbn.c"
#undef scalbn