MCPcopy Create free account
hub / github.com/RavEngine/RavEngine / SDL_fabsf

Function SDL_fabsf

deps/SDL2/src/stdlib/SDL_stdlib.c:233–241  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

231}
232
233float
234SDL_fabsf(float x)
235{
236#if defined(HAVE_FABSF)
237 return fabsf(x);
238#else
239 return (float)SDL_fabs((double)x);
240#endif
241}
242
243double
244SDL_floor(double x)

Callers

nothing calls this directly

Calls 1

SDL_fabsFunction · 0.85

Tested by

no test coverage detected