view libcruft/slatec-fn/xasinh.f @ 12163:55ebf5df9ea6

Use Automake and GNU Make variables for increased portability in DLD-FUNCTIONS/*.oct creation
author Rik <octave@nomad.inbox5.com>
date Tue, 25 Jan 2011 21:38:05 -0800
parents 0280a546622c
children
line wrap: on
line source

      subroutine xasinh (x, result)
      external asinh
      real x, result, asinh
      result = asinh (x)
      return
      end