view libcruft/blas-xtra/xzdotu.f @ 12448:f2c080bbd8a5

Fix documentation bugs uncovered while rewriting munge-texi. Add missing commas to @seealso macro calls for some script functions. Remove @DOCSTRING references to functions without help text references.
author Rik <octave@nomad.inbox5.com>
date Mon, 14 Feb 2011 17:23:04 -0800
parents 5499ec4d8705
children
line wrap: on
line source

      subroutine xzdotu (n, zx, incx, zy, incy, retval)
      double complex zdotu, zx(*), zy(*), retval
      integer n, incx, incy
      external zdotu
      retval = zdotu (n, zx, incx, zy, incy)
      return
      end