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

untabify configure.ac
author John W. Eaton <jwe@octave.org>
date Tue, 15 Feb 2011 12:57:03 -0500
parents 9a5e2d13fa5a
children
line wrap: on
line source

      subroutine xsdot (n, dx, incx, dy, incy, retval)
      real ddot, dx(*), dy(*), retval, sdot
      integer n, incx, incy
      retval = sdot (n, dx, incx, dy, incy)
      return
      end