view liboctave/util/d1mach-tst.for @ 24537:11729ca6eb81

Add GPL license header to more Octave source files. * update-bug-status.sh, gpl.txi, gdbinit, oct-tex-symbols.in, d1mach-tst.for, d1mach.f, i1mach.f, r1mach.f: Add GPL license header to top of file.
author Rik <rik@octave.org>
date Sat, 06 Jan 2018 13:48:58 -0800
parents 58d56f52d50a
children 6652d3823428
line wrap: on
line source

c Copyright (C) 1996-2017 John W. Eaton
c
c This file is part of Octave.
c
c Octave is free software: you can redistribute it and/or modify it
c under the terms of the GNU General Public License as published by
c the Free Software Foundation, either version 3 of the License, or
c (at your option) any later version.
c
c Octave is distributed in the hope that it will be useful, but
c WITHOUT ANY WARRANTY; without even the implied warranty of
c MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
c GNU General Public License for more details.
c
c You should have received a copy of the GNU General Public License
c along with Octave; see the file COPYING.  If not, see
c <https://www.gnu.org/licenses/>.
c
      program main
      integer i
      double precision d1mach
      double precision t1, t2
      do 10 i = 1, 5
        print *, d1mach (i)
   10 continue
      end