Medical Imaging Interaction Toolkit  2016.11.0
Medical Imaging Interaction Toolkit
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
ompver.cpp
Go to the documentation of this file.
1 
2 #include <stdio.h>
3 #include <omp.h>
4 const char ompver_str[] = { 'I', 'N', 'F', 'O', ':', 'O', 'p', 'e', 'n', 'M',
5  'P', '-', 'd', 'a', 't', 'e', '[',
6  ('0' + ((_OPENMP/100000)%10)),
7  ('0' + ((_OPENMP/10000)%10)),
8  ('0' + ((_OPENMP/1000)%10)),
9  ('0' + ((_OPENMP/100)%10)),
10  ('0' + ((_OPENMP/10)%10)),
11  ('0' + ((_OPENMP/1)%10)),
12  ']', '\0' };
13 int main(int argc, char *argv[])
14 {
15  printf("%s\n", ompver_str);
16  return 0;
17 }
int main(int argc, char *argv[])
Definition: ompver.cpp:13
const char ompver_str[]
Definition: ompver.cpp:4