view libcruft/blas-xtra/xsnrm2.f @ 14201:606e634fe951 stable

Added tag rc-3-6-0-1 for changeset 64d9f33313cc
author John W. Eaton <jwe@octave.org>
date Thu, 12 Jan 2012 15:38:08 -0500
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