aboutsummaryrefslogtreecommitdiff
path: root/src/math/ldexpf.c
blob: 10f5138bdc3b425278c75156d8ee7044370a2dc2 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <math.h>

float ldexpf(float x, int n)
{
	return scalbnf(x, n);
}


#ifdef TEST
int
main(void) {
	return 0;
}
#endif