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