EXTREMELY limited 'floor' - without 'libm'. Assumes values that fit in intmax_t. */
| 387 | /* EXTREMELY limited 'floor' - without 'libm'. |
| 388 | Assumes values that fit in intmax_t. */ |
| 389 | static inline intmax_t |
| 390 | simple_round_floor (long double val) |
| 391 | { |
| 392 | return -simple_round_ceiling (-val); |
| 393 | } |
| 394 | |
| 395 | /* EXTREMELY limited 'round away from zero'. |
| 396 | Assumes values that fit in intmax_t. */ |
no test coverage detected