round_up

#define round_up( ) (((a) - 1) / (b) + 1)

Return division result of a/b and round up the result to the closest number divisible by "b".