Topic: Anyone know about setrcd?
I have the F90 source code for an older program that when I build, it complains about not having access to setrcd.
The specific code is:
 subroutine EXIT_WITH_STATUS ( STATUS )
  ! Exit and return STATUS to the invoking process
    integer, intent(in) :: STATUS
    external :: SETRCD
    call setrcd ( status )
    stop
  end subroutine EXIT_WITH_STATUS
In Googling, this appears to possibly be from Lahey/Fujitsu Fortran, and provides some sort of integer/byte for a status code.
Can anyone shed any more light on this topic? Possible problems with deleting this reference?
