blob: b460df5cdb12cdea6f91953570bd50d14cb1eed8 [file] [log] [blame]
f (x, y)
{
if (x % y != 0)
abort ();
}
main ()
{
f (-5, 5);
exit (0);
}