cosmopolitan/libc/math/ldexp.c

7 lines
85 B
C

#include "libc/math/math.h"
double ldexp(double x, int n)
{
return scalbn(x, n);
}