7 lines
75 B
C
Raw Normal View History

2025-10-10 16:07:00 +08:00
#include <math.h>
double ldexp(double x, int n)
{
return scalbn(x, n);
}