summaryrefslogtreecommitdiff
path: root/src/math/ldexp.c
blob: 36835dba563667b8f350ed292d8da6c61b6f77c2 (plain) (blame)
1
2
3
4
5
6
#include "libm.h"

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