1 /* Declarations of various C99 functions
2 Copyright (C) 2004 Free Software Foundation, Inc.
4 This file is part of the GNU Fortran 95 runtime library (libgfortran).
6 Libgfortran is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 Libgfortran is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with libgfortran; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
26 extern float acosf(float);
30 extern float asinf(float);
34 extern float atan2f(float, float);
38 extern float atanf(float);
42 extern float ceilf(float);
45 #ifndef HAVE_COPYSIGNF
46 extern float copysignf(float, float);
50 extern float cosf(float);
54 extern float coshf(float);
58 extern float expf(float);
62 extern float fabsf(float);
66 extern float floorf(float);
70 extern float frexpf(float, int *);
74 extern float hypotf(float, float);
78 extern float logf(float);
82 extern float log10f(float);
86 extern float scalbnf(float, int);
90 extern float sinf(float);
94 extern float sinhf(float);
98 extern float sqrtf(float);
102 extern float tanf(float);
106 extern float tanhf(float);
109 #ifndef HAVE_NEXTAFTERF
110 extern float nextafterf(float, float);
114 extern float powf(float, float);
118 extern double round(double);
122 extern float roundf(float);
125 #endif /* C99_PROTOS_H */