_atan2_r8.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_8)
  29. #ifdef HAVE_ATAN2
  30. elemental function _gfortran_specific__atan2_r8 (p1, p2)
  31. real (kind=8), intent (in) :: p1, p2
  32. real (kind=8) :: _gfortran_specific__atan2_r8
  33. _gfortran_specific__atan2_r8 = atan2 (p1, p2)
  34. end function
  35. #endif
  36. #endif