mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-28 21:49:33 +00:00
16 lines
153 B
C
16 lines
153 B
C
#include <stdlib.h>
|
|
|
|
int
|
|
main (void)
|
|
{
|
|
int i;
|
|
i = 4;
|
|
#pragma omp single copyprivate (i)
|
|
{
|
|
i = 6;
|
|
}
|
|
if (i != 6)
|
|
abort ();
|
|
return 0;
|
|
}
|