ldexp.c 75 字节
Newer Older
1
#include <math.h>
R
Rich Felker 已提交
2 3 4 5 6

double ldexp(double x, int n)
{
	return scalbn(x, n);
}