_tanh_r16.F90 1.44 KB
Newer Older
1
!   Copyright (C) 2002-2019 Free Software Foundation, Inc.
2 3
!   Contributed by Paul Brook <paul@nowt.org>
!
4
!This file is part of the GNU Fortran 95 runtime library (libgfortran).
5
!
6 7
!GNU libgfortran is free software; you can redistribute it and/or
!modify it under the terms of the GNU General Public
8
!License as published by the Free Software Foundation; either
9
!version 3 of the License, or (at your option) any later version.
10

11
!GNU libgfortran is distributed in the hope that it will be useful,
12 13
!but WITHOUT ANY WARRANTY; without even the implied warranty of
!MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
!GNU General Public License for more details.
15
!
16 17 18 19 20 21 22 23
!Under Section 7 of GPL version 3, you are granted additional
!permissions described in the GCC Runtime Library Exception, version
!3.1, as published by the Free Software Foundation.
!
!You should have received a copy of the GNU General Public License and
!a copy of the GCC Runtime Library Exception along with this program;
!see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
!<http://www.gnu.org/licenses/>.
24 25 26 27 28
!
!This file is machine generated.



29 30 31 32 33 34 35 36 37


#include "config.h"
#include "kinds.inc"
#include "c99_protos.inc"

#if defined (HAVE_GFC_REAL_16)
#ifdef HAVE_TANHL

38
elemental function _gfortran_specific__tanh_r16 (parm)
39
   real (kind=16), intent (in) :: parm
40
   real (kind=16) :: _gfortran_specific__tanh_r16
41

42
   _gfortran_specific__tanh_r16 = tanh (parm)
43
end function
44 45 46

#endif
#endif