12 lines
156 B
C
12 lines
156 B
C
|
/* { dg-do run } */
|
||
|
|
||
|
#include <stdio.h>
|
||
|
int
|
||
|
main ()
|
||
|
{
|
||
|
# ifdef _OPENMP
|
||
|
printf ("Compiled by an OpenMP-compliant implementation.\n");
|
||
|
# endif
|
||
|
return 0;
|
||
|
}
|