LLVM OpenMP* Runtime Library
kmp_import.c
1 /*
2  * kmp_import.c
3  */
4 
5 
6 //===----------------------------------------------------------------------===//
7 //
8 // The LLVM Compiler Infrastructure
9 //
10 // This file is dual licensed under the MIT and the University of Illinois Open
11 // Source Licenses. See LICENSE.txt for details.
12 //
13 //===----------------------------------------------------------------------===//
14 
15 
16 /*
17  ------------------------------------------------------------------------------------------------
18  Object generated from this source file is linked to Windows* OS DLL import library (libompmd.lib)
19  only! It is not a part of regular static or dynamic OpenMP RTL. Any code that just needs to go
20  in the libompmd.lib (but not in libompmt.lib and libompmd.dll) should be placed in this
21  file.
22  ------------------------------------------------------------------------------------------------
23 */
24 
25 #ifdef __cplusplus
26 extern "C" {
27 #endif
28 
29 /*
30  These symbols are required for mutual exclusion with Microsoft OpenMP RTL (and compatibility
31  with MS Compiler).
32 */
33 
34 int _You_must_link_with_exactly_one_OpenMP_library = 1;
35 int _You_must_link_with_Intel_OpenMP_library = 1;
36 int _You_must_link_with_Microsoft_OpenMP_library = 1;
37 
38 #ifdef __cplusplus
39 }
40 #endif
41 
42 // end of file //