]>
Commit | Line | Data |
---|---|---|
a5544970 | 1 | ! Copyright (C) 2002-2019 Free Software Foundation, Inc. |
6de9cd9a DN |
2 | ! Contributed by Paul Brook <paul@nowt.org> |
3 | ! | |
57dea9f6 | 4 | !This file is part of the GNU Fortran 95 runtime library (libgfortran). |
6de9cd9a | 5 | ! |
57dea9f6 TM |
6 | !GNU libgfortran is free software; you can redistribute it and/or |
7 | !modify it under the terms of the GNU General Public | |
6de9cd9a | 8 | !License as published by the Free Software Foundation; either |
748086b7 | 9 | !version 3 of the License, or (at your option) any later version. |
3d2244b9 | 10 | |
57dea9f6 | 11 | !GNU libgfortran is distributed in the hope that it will be useful, |
6de9cd9a DN |
12 | !but WITHOUT ANY WARRANTY; without even the implied warranty of |
13 | !MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
57dea9f6 | 14 | !GNU General Public License for more details. |
6de9cd9a | 15 | ! |
748086b7 JJ |
16 | !Under Section 7 of GPL version 3, you are granted additional |
17 | !permissions described in the GCC Runtime Library Exception, version | |
18 | !3.1, as published by the Free Software Foundation. | |
19 | ! | |
20 | !You should have received a copy of the GNU General Public License and | |
21 | !a copy of the GCC Runtime Library Exception along with this program; | |
22 | !see the files COPYING3 and COPYING.RUNTIME respectively. If not, see | |
23 | !<http://www.gnu.org/licenses/>. | |
6de9cd9a DN |
24 | ! |
25 | !This file is machine generated. | |
26 | ||
27 | ||
6de9cd9a | 28 | |
644cb69f FXC |
29 | |
30 | ||
31 | #include "config.h" | |
32 | #include "kinds.inc" | |
33 | #include "c99_protos.inc" | |
34 | ||
35 | #if defined (HAVE_GFC_REAL_16) | |
36 | #ifdef HAVE_COSHL | |
37 | ||
e6472bce | 38 | elemental function _gfortran_specific__cosh_r16 (parm) |
644cb69f | 39 | real (kind=16), intent (in) :: parm |
e6472bce | 40 | real (kind=16) :: _gfortran_specific__cosh_r16 |
644cb69f | 41 | |
e6472bce | 42 | _gfortran_specific__cosh_r16 = cosh (parm) |
6de9cd9a | 43 | end function |
644cb69f FXC |
44 | |
45 | #endif | |
46 | #endif |