view libcruft/blas-xtra/xdznrm2.f @ 14742:7e198fe3732c

Backout changeset c2411bff11c6: mkdir-p tests
author John W. Eaton <jwe@octave.org>
date Thu, 07 Jun 2012 07:28:44 -0400
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