view libcruft/blas-xtra/xscnrm2.f @ 8874:bd1b1fe9c6e9 ss-3-1-53

bump version info for snapshot
author John W. Eaton <jwe@octave.org>
date Wed, 25 Feb 2009 18:35:47 -0500
parents 82be108cc558
children
line wrap: on
line source

      subroutine xscnrm2 (n, x, incx, retval)
      real scnrm2, retval
      complex x(*)
      integer n, incx
      retval = scnrm2 (n, x, incx)
      return
      end