Added SDL_round(), contributed by Benoit Pierre - thanks!

This commit is contained in:
Sam Lantinga 2014-08-16 23:23:15 -07:00
parent 5619521805
commit 5acb7c63d1
19 changed files with 29 additions and 4 deletions

View file

@ -428,6 +428,7 @@ extern DECLSPEC double SDLCALL SDL_fabs(double x);
extern DECLSPEC double SDLCALL SDL_floor(double x);
extern DECLSPEC double SDLCALL SDL_log(double x);
extern DECLSPEC double SDLCALL SDL_pow(double x, double y);
extern DECLSPEC double SDLCALL SDL_round(double x);
extern DECLSPEC double SDLCALL SDL_scalbn(double x, int n);
extern DECLSPEC double SDLCALL SDL_sin(double x);
extern DECLSPEC float SDLCALL SDL_sinf(float x);