mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-10 08:22:11 +01:00
19 lines
244 B
C
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;
|
|
}
|