blob: c390ea4c31e96608372e56edc1adac2ac976fcc4 [file] [log] [blame]
void abort (void);
int
foo (int x, int y, int i, int j)
{
double tmp1 = ((double) x / y);
double tmp2 = ((double) i / j);
return tmp1 < tmp2;
}
int
main (void)
{
if (foo (2, 24, 3, 4) == 0)
abort ();
return 0;
}