add SDL_log10 and SDL_log10f to include and dynapi

This commit is contained in:
sezero 2018-02-08 17:07:47 +03:00
parent 2ad41155fb
commit 5f0540416f
3 changed files with 6 additions and 0 deletions

View file

@ -522,6 +522,8 @@ extern DECLSPEC double SDLCALL SDL_fmod(double x, double y);
extern DECLSPEC float SDLCALL SDL_fmodf(float x, float y);
extern DECLSPEC double SDLCALL SDL_log(double x);
extern DECLSPEC float SDLCALL SDL_logf(float x);
extern DECLSPEC double SDLCALL SDL_log10(double x);
extern DECLSPEC float SDLCALL SDL_log10f(float x);
extern DECLSPEC double SDLCALL SDL_pow(double x, double y);
extern DECLSPEC float SDLCALL SDL_powf(float x, float y);
extern DECLSPEC double SDLCALL SDL_scalbn(double x, int n);