2022-11-04 09:35:42 -07:00

19 lines
244 B
C

/*
* @@name: cond_comp.1
* @@type: C
* @@operation: run
* @@expect: success
* @@version: pre_omp_3.0
*/
#include <stdio.h>
int main()
{
# ifdef _OPENMP
printf("Compiled by an OpenMP-compliant implementation.\n");
# endif
return 0;
}