mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-30 19:53:46 +00:00
18 lines
256 B
C
18 lines
256 B
C
#include <omp.h>
|
|
#include <stdlib.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
if (omp_get_level ())
|
|
abort ();
|
|
#pragma omp target if (0)
|
|
if (omp_get_level ())
|
|
abort ();
|
|
#pragma omp target if (0)
|
|
#pragma omp teams
|
|
if (omp_get_level ())
|
|
abort ();
|
|
return 0;
|
|
}
|