mirror of
https://review.haiku-os.org/buildtools
synced 2025-02-19 12:17:55 +01:00
13 lines
181 B
C
13 lines
181 B
C
|
#include <stdlib.h>
|
||
|
#include <omp.h>
|
||
|
|
||
|
int
|
||
|
main ()
|
||
|
{
|
||
|
#pragma omp target if (0)
|
||
|
#pragma omp teams thread_limit (1)
|
||
|
if (omp_get_thread_limit () != 1)
|
||
|
abort ();
|
||
|
return 0;
|
||
|
}
|