Changeset View
Changeset View
Standalone View
Standalone View
openmp/trunk/runtime/src/kmp_ftn_extra.c
/* | /* | ||||
* kmp_ftn_extra.c -- Fortran 'extra' linkage support for OpenMP. | * kmp_ftn_extra.c -- Fortran 'extra' linkage support for OpenMP. | ||||
*/ | */ | ||||
//===----------------------------------------------------------------------===// | //===----------------------------------------------------------------------===// | ||||
// | // | ||||
// The LLVM Compiler Infrastructure | // The LLVM Compiler Infrastructure | ||||
// | // | ||||
// This file is dual licensed under the MIT and the University of Illinois Open | // This file is dual licensed under the MIT and the University of Illinois Open | ||||
// Source Licenses. See LICENSE.txt for details. | // Source Licenses. See LICENSE.txt for details. | ||||
// | // | ||||
//===----------------------------------------------------------------------===// | //===----------------------------------------------------------------------===// | ||||
#include "kmp.h" | #include "kmp.h" | ||||
#include "kmp_affinity.h" | |||||
#if KMP_OS_WINDOWS | #if KMP_OS_WINDOWS | ||||
# define KMP_FTN_ENTRIES KMP_FTN_PLAIN | # define KMP_FTN_ENTRIES KMP_FTN_PLAIN | ||||
#elif KMP_OS_UNIX | #elif KMP_OS_UNIX | ||||
# define KMP_FTN_ENTRIES KMP_FTN_APPEND | # define KMP_FTN_ENTRIES KMP_FTN_APPEND | ||||
#endif | #endif | ||||
// Note: This string is not printed when KMP_VERSION=1. | // Note: This string is not printed when KMP_VERSION=1. | ||||
Show All 9 Lines |