Merge branch 'maint-0.4.3' into release-0.4.3
[tor.git] / scripts / coccinelle / ceil_div.cocci
blob00843e82c31227bcba2686385fdae2289716fce4
1 @@
2 expression n, d;
3 @@
5 - (((n) + (d) - 1) / (d))
6 + CEIL_DIV(n, d)