summaryrefslogtreecommitdiff
path: root/src/silx/utils/include/silx_store_openmp.h
blob: f04f630fbe8946866ff88c0e150ede90cb6940b8 (plain)
1
2
3
4
5
6
7
8
9
10
/** Flag the C module with a variable to know if it was compiled with OpenMP
 */
#ifdef _OPENMP
static const int COMPILED_WITH_OPENMP = 1;
#else
static const int COMPILED_WITH_OPENMP = 0;
#endif