#include float ldexpf(float x, int n) { return scalbnf(x, n); } #ifdef TEST int main(void) { return 0; } #endif