view libcruft/blas-xtra/xddot.f @ 5983:ae09df27153f

[project @ 2006-09-12 02:15:47 by jwe]
author jwe
date Tue, 12 Sep 2006 02:15:47 +0000
parents
children 679c2f987943
line wrap: on
line source

      subroutine xddot (n, dx, incx, dy, incy, retval)
      double precision ddot, dx(*), dy(*), retval
      integer incx, incy
      retval = ddot (n, dx, incx, dy, incy)
      return
      end