diff options
author | sezero <sezero@users.sourceforge.net> | 2018-02-08 17:07:47 +0300 |
---|---|---|
committer | sezero <sezero@users.sourceforge.net> | 2018-02-08 17:07:47 +0300 |
commit | 4afad7530846403e28814cf9ce809ae5727748db (patch) | |
tree | 2946210d4b406bbb6eb7cab42a8faca3f1602ac4 /include/SDL_stdinc.h | |
parent | f1e0f8998a6032e505836947d4ca86a466d2ef4d (diff) |
add SDL_log10 and SDL_log10f to include and dynapi
Diffstat (limited to 'include/SDL_stdinc.h')
-rw-r--r-- | include/SDL_stdinc.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/SDL_stdinc.h b/include/SDL_stdinc.h index 362f483266..111a0645e8 100644 --- a/include/SDL_stdinc.h +++ b/include/SDL_stdinc.h @@ -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); |