lang-bootstrap/05/musl-final/src/math/s_ldexpf.c
2025-04-05 10:55:40 +01:00

6 lines
75 B
C

#include <math.h>
float ldexpf(float x, int n)
{
return scalbnf(x, n);
}