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

@@ -169,16 +169,6 @@ SDL_pow(double x, double y)
#endif /* HAVE_POW */
}
double
SDL_round(double x)
{
#if defined(HAVE_ROUND)
return round(x);
#else
return SDL_uclibc_round(x);
#endif /* HAVE_ROUND */
}
double
SDL_scalbn(double x, int n)
{