view libcruft/blas-xtra/xzdotc.f @ 12451:c6c3fdbfede2

untabify configure.ac
author John W. Eaton <jwe@octave.org>
date Tue, 15 Feb 2011 12:57:03 -0500
parents 5499ec4d8705
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