| 79 | } |
| 80 | |
| 81 | hc_fix_t hc_fix_div(const hc_fix_t x, const hc_fix_t y) { |
| 82 | return hc_fix(hc_fix_exp(x), hc_fix_val(x) / |
| 83 | hc_fix_val(y) / hc_scale(hc_fix_exp(y))); |
| 84 | } |
| 85 | |
| 86 | void hc_fix_print(const hc_fix_t v, struct hc_stream *out) { |
| 87 | hc_printf(out, |