view libcruft/misc/r1mach.f @ 8710:739141cde75a ss-3-1-52

fix typo in Array-f.cc
author Jaroslav Hajek <highegg@gmail.com>
date Mon, 09 Feb 2009 21:51:31 +0100
parents 82be108cc558
children 32b15d5c3147
line wrap: on
line source

      real function r1mach (i)
      integer i
      logical init
      real rmach(5)
      save init, rmach
      data init /.false./
      if (.not. init) then
        call smachar (rmach(1), rmach(2), rmach(3), rmach(4), rmach(5))
        init = .true.
      endif
      if (i .lt. 1  .or.  i .gt. 5) goto 999
      r1mach = rmach(i)
      return
  999 write(*,1999) i
 1999 format(' s1mach - i out of bounds', i10)
      call xstopx (' ')
      r1mach = 0
      end