| | |
| | | misrepresented as being the original software. |
| | | 3. This notice may not be removed or altered from any source distribution. |
| | | */ |
| | | |
| | | #ifndef math_libm_h_ |
| | | #define math_libm_h_ |
| | | |
| | | #include "../SDL_internal.h" |
| | | |
| | | /* Math routines from uClibc: http://www.uclibc.org */ |
| | |
| | | double SDL_uclibc_atan2(double y, double x); |
| | | double SDL_uclibc_copysign(double x, double y); |
| | | double SDL_uclibc_cos(double x); |
| | | double SDL_uclibc_exp(double x); |
| | | double SDL_uclibc_fabs(double x); |
| | | double SDL_uclibc_floor(double x); |
| | | double SDL_uclibc_fmod(double x, double y); |
| | |
| | | double SDL_uclibc_sqrt(double x); |
| | | double SDL_uclibc_tan(double x); |
| | | |
| | | #endif /* math_libm_h_ */ |
| | | |
| | | /* vi: set ts=4 sw=4 expandtab: */ |