Skip to content

calling fortran from C

1 message · Liaw, Andy

#
This is in R-exts.  If the Fortran subroutine is called `dqrfit', you would
use something like:

F77_CALL(dqrfit)(...);

All arguments need to be pointers, as Fortran passes by reference.

Andy