Added SDL_nextafter() and SDL_nextafterf()

This commit is contained in:
Sam Lantinga
2023-06-13 07:34:50 -07:00
parent b0677f476f
commit bc5d074818
20 changed files with 319 additions and 47 deletions

View File

@@ -640,6 +640,8 @@ extern DECLSPEC double SDLCALL SDL_log10(double x);
extern DECLSPEC float SDLCALL SDL_log10f(float x);
extern DECLSPEC double SDLCALL SDL_modf(double x, double *y);
extern DECLSPEC float SDLCALL SDL_modff(float x, float *y);
extern DECLSPEC double SDLCALL SDL_nextafter(double from, double to);
extern DECLSPEC float SDLCALL SDL_nextafterf(float from, float to);
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_round(double x);