7 lines
75 B
C
Raw Normal View History

2024-03-07 19:42:38 +08:00
#include <math.h>
double ldexp(double x, int n)
{
return scalbn(x, n);
}