Path: blob/main/contrib/llvm-project/openmp/runtime/src/kmp_ftn_stdcall.cpp
35258 views
/*1* kmp_ftn_stdcall.cpp -- Fortran __stdcall linkage support for OpenMP.2*/34//===----------------------------------------------------------------------===//5//6// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.7// See https://llvm.org/LICENSE.txt for license information.8// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception9//10//===----------------------------------------------------------------------===//1112#include "kmp.h"1314// Note: This string is not printed when KMP_VERSION=1.15char const __kmp_version_ftnstdcall[] =16KMP_VERSION_PREFIX "Fortran __stdcall OMP support: "17#ifdef USE_FTN_STDCALL18"yes";19#else20"no";21#endif2223#ifdef USE_FTN_STDCALL2425#define FTN_STDCALL KMP_STDCALL26#define KMP_FTN_ENTRIES USE_FTN_STDCALL2728#include "kmp_ftn_entry.h"29#include "kmp_ftn_os.h"3031#endif /* USE_FTN_STDCALL */323334