Description:
Declare a C function argument,
given that the actual argument will be a SUBROUTINE name passed from a FORTRAN program.
Invocation
SUBROUTINE(name)
Arguments
name
The dummy argument to be declared.
Examples:
SUBROUTINE(name)
will expand as follows:
All systems: | void (*name)() |