1117119Stmm!   Copyright (C) 2002-2020 Free Software Foundation, Inc.
286234Stmm!   Contributed by Paul Brook <paul@nowt.org>
386234Stmm!
486234Stmm!This file is part of the GNU Fortran 95 runtime library (libgfortran).
586234Stmm!
686234Stmm!GNU libgfortran is free software; you can redistribute it and/or
786234Stmm!modify it under the terms of the GNU General Public
886234Stmm!License as published by the Free Software Foundation; either
986234Stmm!version 3 of the License, or (at your option) any later version.
1086234Stmm
1186234Stmm!GNU libgfortran is distributed in the hope that it will be useful,
1286234Stmm!but WITHOUT ANY WARRANTY; without even the implied warranty of
1386234Stmm!MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
1486234Stmm!GNU General Public License for more details.
1586234Stmm!
1686234Stmm!Under Section 7 of GPL version 3, you are granted additional
1786234Stmm!permissions described in the GCC Runtime Library Exception, version
1886234Stmm!3.1, as published by the Free Software Foundation.
1986234Stmm!
2086234Stmm!You should have received a copy of the GNU General Public License and
2186234Stmm!a copy of the GCC Runtime Library Exception along with this program;
2286234Stmm!see the files COPYING3 and COPYING.RUNTIME respectively.  If not, see
2386234Stmm!.
2486234Stmm!
2586234Stmm!This file is machine generated.
2686234Stmm
2786234Stmm
2886234Stmm
29115417Stmm#include "config.h"
30115417Stmm#include "kinds.inc"
31117119Stmm#include "c99_protos.inc"
3286234Stmm
33117119Stmm#if defined (HAVE_GFC_REAL_16)
3486234Stmm
3586234Stmm
36117119Stmm
37117119Stmmelemental function _gfortran_specific__sign_r16 (p1, p2)
38117119Stmm   real (kind=16), intent (in) :: p1, p2
39117119Stmm   real (kind=16) :: _gfortran_specific__sign_r16
40117119Stmm
41117119Stmm   _gfortran_specific__sign_r16 = sign (p1, p2)
4286234Stmmend function
43117119Stmm
4486234Stmm
4586234Stmm
46117119Stmm#endif
4786234Stmm