diff options
Diffstat (limited to 'openmp/runtime/src/kmp_import.cpp')
-rw-r--r-- | openmp/runtime/src/kmp_import.cpp | 20 |
1 files changed, 7 insertions, 13 deletions
diff --git a/openmp/runtime/src/kmp_import.cpp b/openmp/runtime/src/kmp_import.cpp index fc4bdae9dbe..94b8842bbf9 100644 --- a/openmp/runtime/src/kmp_import.cpp +++ b/openmp/runtime/src/kmp_import.cpp @@ -13,26 +13,20 @@ //===----------------------------------------------------------------------===// -/* - ------------------------------------------------------------------------------------------------ - Object generated from this source file is linked to Windows* OS DLL import library (libompmd.lib) - only! It is not a part of regular static or dynamic OpenMP RTL. Any code that just needs to go - in the libompmd.lib (but not in libompmt.lib and libompmd.dll) should be placed in this - file. - ------------------------------------------------------------------------------------------------ -*/ +/* Object generated from this source file is linked to Windows* OS DLL import + library (libompmd.lib) only! It is not a part of regular static or dynamic + OpenMP RTL. Any code that just needs to go in the libompmd.lib (but not in + libompmt.lib and libompmd.dll) should be placed in this file. */ #ifdef __cplusplus extern "C" { #endif -/* - These symbols are required for mutual exclusion with Microsoft OpenMP RTL (and compatibility - with MS Compiler). -*/ +/*These symbols are required for mutual exclusion with Microsoft OpenMP RTL + (and compatibility with MS Compiler). */ int _You_must_link_with_exactly_one_OpenMP_library = 1; -int _You_must_link_with_Intel_OpenMP_library = 1; +int _You_must_link_with_Intel_OpenMP_library = 1; int _You_must_link_with_Microsoft_OpenMP_library = 1; #ifdef __cplusplus |