view libcruft/blas-xtra/xsnrm2.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 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