To give this request a little context, consider the attached example.
This time actually attached. -- Jim Wilson, GNU Tools Support, http://www.SpecifixInc.com
int
sub (int i, int j)
{
if (i == 0)
abort ();
else if (j == 0)
abort ();
else
return i * j;
}
int
main(void)
{
return sub (0, 10);
}
