Removed SDL_round() because the license wasn't compatible with zlib

This commit is contained in:
Sam Lantinga
2014-08-17 13:11:55 -07:00
parent 2a13cab927
commit 1ea8697894
20 changed files with 12 additions and 37 deletions

View File

@@ -30,7 +30,6 @@ double SDL_uclibc_fabs(double x);
double SDL_uclibc_floor(double x);
double SDL_uclibc_log(double x);
double SDL_uclibc_pow(double x, double y);
double SDL_uclibc_round(double x);
double SDL_uclibc_scalbn(double x, int n);
double SDL_uclibc_sin(double x);
double SDL_uclibc_sqrt(double x);

View File

@@ -37,7 +37,6 @@ typedef unsigned int u_int32_t;
#define floor SDL_uclibc_floor
#define __ieee754_log SDL_uclibc_log
#define __ieee754_pow SDL_uclibc_pow
#define round SDL_uclibc_round
#define scalbn SDL_uclibc_scalbn
#define sin SDL_uclibc_sin
#define __ieee754_sqrt SDL_uclibc_sqrt