view libcruft/blas-xtra/xdznrm2.f @ 10412:d2ac9433cd09

append AM_CPPFLAGS to libcruft_la_CPPFLAGS
author John W. Eaton <jwe@octave.org>
date Mon, 15 Mar 2010 16:56:14 -0400
parents 3c89a3f9d23e
children
line wrap: on
line source

      subroutine xdznrm2 (n, x, incx, retval)
      double precision dznrm2, retval
      double complex x(*)
      integer n, incx
      retval = dznrm2 (n, x, incx)
      return
      end