Following Steve Lionel'sadvicee with warn interface I got this warning for the code I am compiling
math.f(2079): error #8284: If the actual argument is scalar, the dummy argument shall be scalar unless the actual argument is of type character or is an element of an array that is not assumed shape, pointer, or polymorphic. [IPAR]
In my subroutine fzero I have vector if integer parameters ipar.The guy who wrote the code declared
dimension rpar(*),ipar(*)
How should I change this to function properly,not just to silence the compiler?