view libcruft/blas-xtra/xzdotc.f @ 7686:5499ec4d8705

fix typos in xzdotu and xzdotc wrappers
author John W. Eaton <jwe@octave.org>
date Thu, 03 Apr 2008 00:01:07 -0400
parents 8136cb19fb7a
children
line wrap: on
line source

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