divround
#define divround(n, d) (((n) + (d) / 2) / (d))
#define divround(a, b) (((a) + (b) - 1) / (b))
#undef divround