| 231 | } |
| 232 | |
| 233 | float |
| 234 | SDL_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 | |
| 243 | double |
| 244 | SDL_floor(double x) |
nothing calls this directly
no test coverage detected