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, 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301,
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) fabs(x
);
49 return fabs((double) x
);
58 return (float) acos(x
);
66 return acos((double) x
);
75 return (float) asin(x
);
83 return asin((double) x
);
92 return (float) atan(x
);
100 return atan ((double) x
);
107 atan2f(float x
, float y
)
109 return (float) atan2(x
, y
);
115 atan2l(long double x
, long double y
)
117 return atan2((double) x
, (double) y
);
126 return (float) ceil(x
);
134 return ceil((double) x
);
143 return (float) cos(x
);
151 return cos((double) x
);
160 return (float) cosh(x
);
168 return cosh((double) x
);
177 return (float) exp(x
);
185 return exp((double) x
);
194 return (float) floor(x
);
200 floorl(long double x
)
202 return floor((double) x
);
209 fmodf(float x
, float y
)
211 return (float) fmod(x
, y
);
217 fmodl(long double x
, long double y
)
219 return fmod((double) x
, (double) y
);
226 frexpf(float x
, int *exp
)
228 return (float) frexp(x
, exp
);
234 frexpl(long double x
, int *exp
)
236 return frexp((double) x
, exp
);
245 return (float) sqrt(x
);
253 return sqrt((double) x
);
258 /* Compute the hypothenuse of a right triangle with side x and y. */
261 hypotf(float x
, float y
)
263 float s
= fabsf(x
) + fabsf(y
);
267 return s
* sqrtf(x
* x
+ y
* y
);
273 hypot(double x
, double y
)
275 double s
= fabs(x
) + fabs(y
);
279 return s
* sqrt(x
* x
+ y
* y
);
285 hypotl(long double x
, long double y
)
287 long double s
= fabsl(x
) + fabsl(y
);
291 return s
* sqrtl(x
* x
+ y
* y
);
299 ldexpf(float x
, int exp
)
301 return (float) ldexp(x
, exp
);
307 ldexpl(long double x
, int exp
)
309 return ldexp((double) x
, exp
);
318 return (float) log(x
);
326 return log((double) x
);
335 return (float) log10(x
);
341 log10l(long double x
)
343 return log10((double) x
);
350 modff(float x
, float *iptr
)
354 result
= modf(x
, &temp
);
355 *iptr
= (float) temp
;
356 return (float) result
;
362 modfl(long double x
, long double *iptr
)
366 result
= modf((double) x
, &temp
);
375 powf(float x
, float y
)
377 return (float) pow(x
, y
);
383 powl(long double x
, long double y
)
385 return pow((double) x
, (double) y
);
394 return (float) sin(x
);
402 return sin((double) x
);
411 return (float) sinh(x
);
419 return sinh((double) x
);
428 return (float) tan(x
);
436 return tan((double) x
);
445 return (float) tanh(x
);
453 return tanh((double) x
);