1module sistuspf_mod 2interface 3 subroutine sistuspf(a, b, u, ip) 4 implicit none 5 real(8), intent (in) :: a(:,:), b(:) 6 integer, intent (in) :: ip(:) 7 real(8), intent (out) :: u(:) 8 end subroutine sistuspf 9end interface 10end module sistuspf_mod 11 12