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

long long llroundf(float x)
{
	return roundf(x);
}


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