X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Fcfg%2Fmacros.h;h=69c404851c14b107709b3e7f8e3bfe6ac66049dc;hb=fb50d9a9ef1afffd6ababf97350b98dd5fb066ec;hp=dda5fe0e635a023bfc1c3cb338b9d65d0a09ff8d;hpb=e2859fe4c9165cbb9cf2302945d2b51b0540a0bb;p=bertos.git diff --git a/bertos/cfg/macros.h b/bertos/cfg/macros.h index dda5fe0e..69c40485 100644 --- a/bertos/cfg/macros.h +++ b/bertos/cfg/macros.h @@ -33,7 +33,7 @@ * \brief Common and handy function macros * * \version $Id$ - * \author Bernardo Innocenti + * \author Bernie Innocenti * \author Giovanni Bajo */ #ifndef 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. *