view libcruft/lapack-xtra/xslange.f @ 12740:0fe2eb81e6d0 stable

maint: don't remove distributed files with make distclean target * Makefile.am (MAINTAINERCLEANFILES): New variable. (DISTCLEANFILES): Remove $(INFO_FILES) and ChangeLog from the list.
author John W. Eaton <jwe@octave.org>
date Tue, 14 Jun 2011 12:54:28 -0400
parents 82be108cc558
children
line wrap: on
line source

      subroutine xslange (norm, m, n, a, lda, work, retval)
      character norm
      integer lda, m, n
      real a (lda, *), work (*), slange, retval
      retval = slange (norm, m, n, a, lda, work)
      return
      end