Description:
Call a FORTRAN subroutine or
function from a C routine.
Invocation
F77_CALL(name)
Arguments
name
The name
of the FORTRAN routine being called.
Examples:
F77_CALL(suba)
will expand as
follows:
All Unix: | suba_ |
VAX/VMS: | suba |
Notes:
This macro is just a shorthand for F77_EXTERNAL_NAME. It is more expressive to use
F77_CALL rather than F77_EXTERNAL_NAME when calling a routine.