view libcruft/blas-xtra/xzdotu.f @ 14685:4460c4fb20e6 stable rc-3-6-2-2

3.6.2-rc2 release candidate * configure.ac (AC_INIT): Version is now 3.6.2-rc2.
author John W. Eaton <jwe@octave.org>
date Thu, 24 May 2012 15:35:50 -0400
parents 5499ec4d8705
children
line wrap: on
line source

      subroutine xzdotu (n, zx, incx, zy, incy, retval)
      double complex zdotu, zx(*), zy(*), retval
      integer n, incx, incy
      external zdotu
      retval = zdotu (n, zx, incx, zy, incy)
      return
      end