X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcfg%2Fmacros.h;h=e6706f648f66006810ba009c78d42115afead3f1;hb=bda93760e44feebf2b73c498955c46d4853eed19;hp=0a721ac5a060f703d00a594ed9ab7cad25ae926e;hpb=1c11ac0ab0636d07db3899b02c5d89e2d0b020bc;p=bertos.git diff --git a/bertos/cfg/macros.h b/bertos/cfg/macros.h index 0a721ac5..e6706f64 100644 --- a/bertos/cfg/macros.h +++ b/bertos/cfg/macros.h @@ -192,8 +192,7 @@ /** * Perform an integer division rounding the result to the upper int value. - * \note \a divisor should preferibly be a costant, otherwise this macro generates - * 2 division. Also divisor is evaluated twice. + * \note \a divisor is evaluated twice. */ #define DIV_ROUNDUP(dividend, divisor) (((dividend) + (divisor) - 1) / (divisor))