Made #if defined(X) consistent
parent
6dedbc4309
commit
9db5e9aae9
|
@ -34,7 +34,7 @@
|
||||||
double
|
double
|
||||||
SDL_atan(double x)
|
SDL_atan(double x)
|
||||||
{
|
{
|
||||||
#ifdef HAVE_ATAN
|
#if defined(HAVE_ATAN)
|
||||||
return atan(x);
|
return atan(x);
|
||||||
#else
|
#else
|
||||||
return SDL_uclibc_atan(x);
|
return SDL_uclibc_atan(x);
|
||||||
|
@ -90,7 +90,7 @@ SDL_asin(double val)
|
||||||
double
|
double
|
||||||
SDL_ceil(double x)
|
SDL_ceil(double x)
|
||||||
{
|
{
|
||||||
#ifdef HAVE_CEIL
|
#if defined(HAVE_CEIL)
|
||||||
return ceil(x);
|
return ceil(x);
|
||||||
#else
|
#else
|
||||||
double integer = SDL_floor(x);
|
double integer = SDL_floor(x);
|
||||||
|
@ -127,7 +127,7 @@ SDL_cos(double x)
|
||||||
float
|
float
|
||||||
SDL_cosf(float x)
|
SDL_cosf(float x)
|
||||||
{
|
{
|
||||||
#ifdef HAVE_COSF
|
#if defined(HAVE_COSF)
|
||||||
return cosf(x);
|
return cosf(x);
|
||||||
#else
|
#else
|
||||||
return (float)SDL_cos((double)x);
|
return (float)SDL_cos((double)x);
|
||||||
|
@ -199,7 +199,7 @@ SDL_sin(double x)
|
||||||
float
|
float
|
||||||
SDL_sinf(float x)
|
SDL_sinf(float x)
|
||||||
{
|
{
|
||||||
#ifdef HAVE_SINF
|
#if defined(HAVE_SINF)
|
||||||
return sinf(x);
|
return sinf(x);
|
||||||
#else
|
#else
|
||||||
return (float)SDL_sin((double)x);
|
return (float)SDL_sin((double)x);
|
||||||
|
@ -248,14 +248,14 @@ SDL_tanf(float x)
|
||||||
|
|
||||||
int SDL_abs(int x)
|
int SDL_abs(int x)
|
||||||
{
|
{
|
||||||
#ifdef HAVE_ABS
|
#if defined(HAVE_ABS)
|
||||||
return abs(x);
|
return abs(x);
|
||||||
#else
|
#else
|
||||||
return ((x) < 0 ? -(x) : (x));
|
return ((x) < 0 ? -(x) : (x));
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
#ifdef HAVE_CTYPE_H
|
#if defined(HAVE_CTYPE_H)
|
||||||
int SDL_isdigit(int x) { return isdigit(x); }
|
int SDL_isdigit(int x) { return isdigit(x); }
|
||||||
int SDL_isspace(int x) { return isspace(x); }
|
int SDL_isspace(int x) { return isspace(x); }
|
||||||
int SDL_toupper(int x) { return toupper(x); }
|
int SDL_toupper(int x) { return toupper(x); }
|
||||||
|
|
Loading…
Reference in New Issue