| 17 | static float t4 = 0; |
| 18 | |
| 19 | static void cfunction(float f1, float f2, double f3, float f4) |
| 20 | { |
| 21 | called = true; |
| 22 | t1 = f1; |
| 23 | t2 = f2; |
| 24 | t3 = f3; |
| 25 | t4 = f4; |
| 26 | testVal = (f1 == 9.2f) && (f2 == 13.3f) && (f3 == 18.8) && (f4 == 3.1415f); |
| 27 | } |
| 28 | |
| 29 | static void cfunction2(double f1, double f2, double f3, double f4) |
| 30 | { |