about summary refs log tree commit diff stats
path: root/external/musl/ldexp.c
blob: 2b49bd964da0435e9de17ec47ec9e0f36ba2ce9f (plain) (blame)
1
2
3
4
5
6
#include <math.h>

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