aboutsummaryrefslogtreecommitdiff
path: root/src/math/__math_invalidf.c
blob: 77f69f663ef1a25a6f7ba53e736ba56858a0887f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "libm.h"

float __math_invalidf(float x)
{
	return (x - x) / (x - x);
}


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