#include long double ldexpl(long double x, int n) { return scalbnl(x, n); } #ifdef TEST int main(void) { return 0; } #endif