mirror of
https://github.com/OpenMP/Examples.git
synced 2025-04-07 23:22:11 +01:00
19 lines
239 B
C
19 lines
239 B
C
/*
|
|
* @@name: cond_comp.1c
|
|
* @@type: C
|
|
* @@compilable: yes
|
|
* @@linkable: yes
|
|
* @@expect: success
|
|
*/
|
|
#include <stdio.h>
|
|
|
|
int main()
|
|
{
|
|
|
|
# ifdef _OPENMP
|
|
printf("Compiled by an OpenMP-compliant implementation.\n");
|
|
# endif
|
|
|
|
return 0;
|
|
}
|