view libcruft/slatec-fn/xerfc.f @ 12408:187d48827b47 release-3-4-x

don't warn about coercing nested functions to subfunctions if yyparse failed
author John W. Eaton <jwe@octave.org>
date Tue, 08 Feb 2011 03:22:12 -0500
parents 82be108cc558
children
line wrap: on
line source

      subroutine xerfc (x, result)
      external erfc
      real x, result, erfc
      result = erfc (x)
      return
      end