view libcruft/blas-xtra/xdznrm2.f @ 8874:bd1b1fe9c6e9 ss-3-1-53

bump version info for snapshot
author John W. Eaton <jwe@octave.org>
date Wed, 25 Feb 2009 18:35:47 -0500
parents 3c89a3f9d23e
children
line wrap: on
line source

      subroutine xdznrm2 (n, x, incx, retval)
      double precision dznrm2, retval
      double complex x(*)
      integer n, incx
      retval = dznrm2 (n, x, incx)
      return
      end