view libcruft/blas-xtra/xdnrm2.f @ 6536:3c89a3f9d23e

[project @ 2007-04-18 16:26:49 by jwe]
author jwe
date Wed, 18 Apr 2007 16:26:49 +0000
parents 184ab67c3bc1
children
line wrap: on
line source

      subroutine xdnrm2 (n, x, incx, retval)
      double precision dnrm2, x(*), retval
      integer n, incx
      retval = dnrm2 (n, x, incx)
      return
      end