view libcruft/slatec-fn/xdacosh.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 c0532bbaefd7
children
line wrap: on
line source

      subroutine xdacosh (x, result)
      external dacosh
      double precision x, result, dacosh
      result = dacosh (x)
      return
      end