1 #include <math.h>
2
3 int test_1 (void)
4 {
5 float foo = 42.;
6 if (isnan (foo))
7 return 1;
8 return 0;
9 }
1 #include <math.h>
2
3 int test_1 (void)
4 {
5 float foo = 42.;
6 if (isnan (foo))
7 return 1;
8 return 0;
9 }