mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 01:50:38 +00:00
12 lines
153 B
C
12 lines
153 B
C
#include <stdlib.h>
|
|
#include <omp.h>
|
|
|
|
int
|
|
main ()
|
|
{
|
|
#pragma omp teams thread_limit (1)
|
|
if (omp_get_thread_limit () != 1)
|
|
abort ();
|
|
return 0;
|
|
}
|