1 /* Stub definitions for libmath subpart of libstdc++. */
3 /* Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc.
5 This file is part of the GNU ISO C++ Library. This library is free
6 software; you can redistribute it and/or modify it under the
7 terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 2, or (at your option)
11 This library 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 General Public License for more details.
16 You should have received a copy of the GNU General Public License along
17 with this library; see the file COPYING. If not, write to the Free
18 Software Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307,
21 As a special exception, you may use this file as part of a free software
22 library without restriction. Specifically, if other files instantiate
23 templates or use macros or inline functions from this file, or you compile
24 this file and link it with other files to produce an executable, this
25 file does not by itself cause the resulting executable to be covered by
26 the GNU General Public License. This exception does not however
27 invalidate any other reasons why the executable file might be covered by
28 the GNU General Public License. */
33 /* For targets which do not have support for long double versions,
34 we use the crude approximation. We'll do better later. */
41 return (float) acos(x
);
49 return acos((double) x
);
58 return (float) asin(x
);
66 return asin((double) x
);
75 return (float) atan(x
);
83 return atan ((double) x
);
90 atan2f(float x
, float y
)
92 return (float) atan2(x
, y
);
98 atan2l(long double x
, long double y
)
100 return atan2((double) x
, (double) y
);
109 return (float) ceil(x
);
117 return ceil((double) x
);
126 return (float) cos(x
);
134 return cos((double) x
);
143 return (float) cosh(x
);
151 return cosh((double) x
);
160 return (float) exp(x
);
168 return exp((double) x
);
177 return (float) floor(x
);
183 floorl(long double x
)
185 return floor((double) x
);
192 fmodf(float x
, float y
)
194 return (float) fmod(x
, y
);
200 fmodl(long double x
, long double y
)
202 return fmod((double) x
, (double) y
);
209 frexpf(float x
, int *exp
)
211 return (float) frexp(x
, exp
);
217 frexpl(long double x
, int *exp
)
219 return frexp((double) x
, exp
);
228 return (float) sqrt(x
);
236 return sqrt((double) x
);
241 /* Compute the hypothenuse of a right triangle with side x and y. */
244 hypotf(float x
, float y
)
246 float s
= fabsf(x
) + fabsf(y
);
250 return s
* sqrtf(x
* x
+ y
* y
);
256 hypot(double x
, double y
)
258 double s
= fabs(x
) + fabs(y
);
262 return s
* sqrt(x
* x
+ y
* y
);
268 hypotl(long double x
, long double y
)
270 long double s
= fabsl(x
) + fabsl(y
);
274 return s
* sqrtl(x
* x
+ y
* y
);
282 ldexpf(float x
, int exp
)
284 return (float) ldexp(x
, exp
);
290 ldexpl(long double x
, int exp
)
292 return ldexp((double) x
, exp
);
301 return (float) log(x
);
309 return log((double) x
);
318 return (float) log10(x
);
324 log10l(long double x
)
326 return log10((double) x
);
333 modff(float x
, float *iptr
)
337 result
= modf(x
, &temp
);
338 *iptr
= (float) temp
;
339 return (float) result
;
345 modfl(long double x
, long double *iptr
)
349 result
= modf((double) x
, &temp
);
358 powf(float x
, float y
)
360 return (float) pow(x
, y
);
366 powl(long double x
, long double y
)
368 return pow((double) x
, (double) y
);
377 return (float) sin(x
);
385 return sin((double) x
);
394 return (float) sinh(x
);
402 return sinh((double) x
);
411 return (float) tan(x
);
419 return tan((double) x
);
428 return (float) tanh(x
);
436 return tanh((double) x
);