I'm using CVF and I'm trying to create Fortran dll and call some functions from it from another Fortran program. Here is my code for the program inside the DLL:
subroutine abc(a,b,c)
!DEC$ ATTRIBUTES DLLEXPORT :: abc
implicit none
integer, intent(in) :: a,b
integer, intent(out) :: c
real*8 pi...