You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
309 B
9 lines
309 B
#if defined(__PATHSCALE__)
|
|
/* PathScale Fortran wants mymodule_ when calling any mymodule symbol,
|
|
but module symbols use '.in.' so we cannot provide them anyway. */
|
|
void pathscale_mymodule_(void) {}
|
|
#else
|
|
/* PGI Fortran wants mymodule_ when calling any mymodule symbol. */
|
|
void mymodule_(void) {}
|
|
#endif
|