mirror of
https://github.com/encounter/SDL.git
synced 2025-12-15 16:16:16 +00:00
Added SDL_round(), contributed by Benoit Pierre - thanks!
This commit is contained in:
@@ -30,6 +30,7 @@ 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);
|
||||
|
||||
@@ -37,6 +37,7 @@ 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
|
||||
|
||||
Reference in New Issue
Block a user