view libcruft/blas-xtra/xsnrm2.f @ 14770:cb85e836d035

New function: erfcinv (bug #36607)
author Axel Mathéi <axel.mathei@gmail.com>
date Thu, 14 Jun 2012 23:31:59 +0200
parents 82be108cc558
children
line wrap: on
line source

      subroutine xsnrm2 (n, x, incx, retval)
      real snrm2, x(*), retval
      integer n, incx
      retval = snrm2 (n, x, incx)
      return
      end