X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcfg%2Fmacros.h;h=69c404851c14b107709b3e7f8e3bfe6ac66049dc;hb=d29f71dcdf6cb2e0269de54198f26f68162de500;hp=638118b54f4bdff3b8490a57108d9db5941ccfb5;hpb=4cc44c9888a0336b9d01121ec0b7ad95f4a76195;p=bertos.git diff --git a/bertos/cfg/macros.h b/bertos/cfg/macros.h index 638118b5..69c40485 100644 --- a/bertos/cfg/macros.h +++ b/bertos/cfg/macros.h @@ -166,9 +166,6 @@ /** Round up \a x to an even multiple of the 2's power \a pad. */ #define ROUND_UP2(x, pad) (((x) + ((pad) - 1)) & ~((pad) - 1)) -/* OBSOLETE */ -#define ROUND2 ROUND_UP2 - /** * \name Integer round macros. *