libgomp.texi: Update and cleanup of Impl. Status of OpenMP TR13
[official-gcc.git] / gcc / testsuite / gcc.c-torture / execute / mod-1.c
blob78f169cef4cd000a3fe5340770875a87dbe266e6
1 /* { dg-additional-options "-std=gnu89" } */
3 f (x, y)
5 if (x % y != 0)
6 abort ();
9 main ()
11 f (-5, 5);
12 exit (0);