-
Notifications
You must be signed in to change notification settings - Fork 65
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add superlu_FortranCInterface.h; it is generated by cmake.
- Loading branch information
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
#ifndef FC_HEADER_INCLUDED | ||
#define FC_HEADER_INCLUDED | ||
|
||
/* Mangling for Fortran global symbols without underscores. */ | ||
#define FC_GLOBAL(name,NAME) name##_ | ||
|
||
/* Mangling for Fortran global symbols with underscores. */ | ||
#define FC_GLOBAL_(name,NAME) name##_ | ||
|
||
/* Mangling for Fortran module symbols without underscores. */ | ||
#define FC_MODULE(mod_name,name, mod_NAME,NAME) __##mod_name##_MOD_##name | ||
|
||
/* Mangling for Fortran module symbols with underscores. */ | ||
#define FC_MODULE_(mod_name,name, mod_NAME,NAME) __##mod_name##_MOD_##name | ||
|
||
#endif |