view libcruft/blas-xtra/xzdotc.f @ 10220:04f2b4d68eba

test/fntests.m (hasfunctions): assume .m files have functions
author John W. Eaton <jwe@octave.org>
date Fri, 29 Jan 2010 06:20:36 -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