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

float nanf(const char *s)
{
	return NAN;
}


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