mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-04 13:06:01 +00:00
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;
|
|
}
|