view libcruft/blas-xtra/xsnrm2.f @ 10485:b4e14e628fc9

Truncate argv() for scripts used without command line parameters. Bug #29423
author Judd Storrs <jstorrs@gmail.com>
date Fri, 02 Apr 2010 13:28:02 -0400
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