Added atan implementation from uClibc

This commit is contained in:
Sam Lantinga 2010-08-29 16:51:48 -07:00
parent 4d97d1a549
commit d8303d3f7a
5 changed files with 128 additions and 1 deletions

View file

@ -24,6 +24,12 @@
/* Math routines from uClibc: http://www.uclibc.org */
#ifdef HAVE_ATAN
#define atan SDL_uclibc_atan
#else
#define atan SDL_atan
#endif
#ifndef HAVE_ATAN2
#define __ieee754_atan2 SDL_atan2
#endif