10 lines
93 B
C
Raw Permalink Normal View History

2024-06-21 15:44:42 +08:00
#include <omp.h>
int main() {
#ifdef _OPENMP
return 0;
#else
breaks_on_purpose
#endif
}