view libcruft/blas-xtra/xscnrm2.f @ 12451:c6c3fdbfede2

untabify configure.ac
author John W. Eaton <jwe@octave.org>
date Tue, 15 Feb 2011 12:57:03 -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