testsuite: pru: Fix pr64366.c for new -std=gnu23 default
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / 990117-1.c
blobc390ea4c31e96608372e56edc1adac2ac976fcc4
1 void abort (void);
3 int
4 foo (int x, int y, int i, int j)
6 double tmp1 = ((double) x / y);
7 double tmp2 = ((double) i / j);
9 return tmp1 < tmp2;
12 int
13 main (void)
15 if (foo (2, 24, 3, 4) == 0)
16 abort ();
17 return 0;