Comment the UC_DIV_ROUND_UP macro

This commit is contained in:
Nils O. Selåsdal
2013-11-17 21:44:19 +01:00
parent 938ffe330d
commit 0f88bb3190
+4 -2
View File
@@ -109,8 +109,10 @@ do {\
while (0) while (0)
/** /**
* Round up X / y * Round up x / y
* * (e.g 100/9 == 12, 3/2 == 2)
* x + y must not overflow.
*
* @param x numerator, must be positive * @param x numerator, must be positive
* @param y denominator * @param y denominator
* @return x/y rounded up * @return x/y rounded up