! simple interface routines such that f2py does not have to also compile ! parts no needed for the interface. subroutine loadconv_(filename, ifirst, ilast) use typedef, only: & int32 use convload, only: & loadconv implicit none integer(kind=int32), intent(IN) :: & ifirst, ilast character(len=*), intent(IN) :: & filename call loadconv(filename, ifirst, ilast) end subroutine loadconv_