2024-06-21 15:44:42 +08:00

10 lines
93 B
C

#include <omp.h>
int main() {
#ifdef _OPENMP
return 0;
#else
breaks_on_purpose
#endif
}