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

double nan(const char *s)
{
	return NAN;
}


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