LLVM OpenMP* Runtime Library
src
kmp_import.cpp
1
/*
2
* kmp_import.cpp
3
*/
4
5
//===----------------------------------------------------------------------===//
6
//
7
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
8
// See https://llvm.org/LICENSE.txt for license information.
9
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
10
//
11
//===----------------------------------------------------------------------===//
12
13
/* Object generated from this source file is linked to Windows* OS DLL import
14
library (libompmd.lib) only! It is not a part of regular static or dynamic
15
OpenMP RTL. Any code that just needs to go in the libompmd.lib (but not in
16
libompmt.lib and libompmd.dll) should be placed in this file. */
17
18
#ifdef __cplusplus
19
extern
"C"
{
20
#endif
21
22
/*These symbols are required for mutual exclusion with Microsoft OpenMP RTL
23
(and compatibility with MS Compiler). */
24
25
int
_You_must_link_with_exactly_one_OpenMP_library = 1;
26
int
_You_must_link_with_Intel_OpenMP_library = 1;
27
int
_You_must_link_with_Microsoft_OpenMP_library = 1;
28
29
#ifdef __cplusplus
30
}
31
#endif
32
33
// end of file //
Generated by
1.9.4