c isamaxsub.f
c
c The program is a fortran wrapper for isamax.
c Witten by Keita Teranishi. 2/11/1998
subroutine isamaxsub(n,x,incx,iamax)
external isamax
integer isamax,iamax
integer n,incx
real x(*)
iamax=isamax(n,x,incx)
return
end