_dim_r16.F90 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. ! Copyright (C) 2002-2022 Free Software Foundation, Inc.
  2. ! Contributed by Paul Brook <paul@nowt.org>
  3. !
  4. !This file is part of the GNU Fortran 95 runtime library (libgfortran).
  5. !
  6. !GNU libgfortran is free software; you can redistribute it and/or
  7. !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. !GNU libgfortran is distributed in the hope that it will be useful,
  11. !but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. !MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. !GNU General Public License for more details.
  14. !
  15. !Under Section 7 of GPL version 3, you are granted additional
  16. !permissions described in the GCC Runtime Library Exception, version
  17. !3.1, as published by the Free Software Foundation.
  18. !
  19. !You should have received a copy of the GNU General Public License and
  20. !a copy of the GCC Runtime Library Exception along with this program;
  21. !see the files COPYING3 and COPYING.RUNTIME respectively. If not, see
  22. !<http://www.gnu.org/licenses/>.
  23. !
  24. !This file is machine generated.
  25. #include "config.h"
  26. #include "kinds.inc"
  27. #include "c99_protos.inc"
  28. #if defined (HAVE_GFC_REAL_16)
  29. elemental function _gfortran_specific__dim_r16 (p1, p2)
  30. real (kind=16), intent (in) :: p1, p2
  31. real (kind=16) :: _gfortran_specific__dim_r16
  32. _gfortran_specific__dim_r16 = dim (p1, p2)
  33. end function
  34. #endif