view libcruft/blas-xtra/xddot.f @ 10485:b4e14e628fc9

Truncate argv() for scripts used without command line parameters. Bug #29423
author Judd Storrs <jstorrs@gmail.com>
date Fri, 02 Apr 2010 13:28:02 -0400
parents 679c2f987943
children
line wrap: on
line source

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