From a06f1d1cf5b0d48d4ea017110b2324546dd16785 Mon Sep 17 00:00:00 2001 From: hyung-hwan Date: Wed, 30 Mar 2005 10:49:01 +0000 Subject: [PATCH] *** empty log message *** --- ase/macros.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ase/macros.h b/ase/macros.h index 8e54200c..6ad4c00d 100644 --- a/ase/macros.h +++ b/ase/macros.h @@ -1,5 +1,5 @@ /* - * $Id: macros.h,v 1.16 2005-03-30 10:48:17 bacon Exp $ + * $Id: macros.h,v 1.17 2005-03-30 10:49:01 bacon Exp $ */ #ifndef _XP_MACROS_H_ @@ -31,7 +31,7 @@ #define XP_TYPE_MIN(type) \ ((XP_TYPE_IS_SIGNED(type)? (type)((type)1 << (xp_sizeof(type) * 8 - 1)): (type)0)) -#define XP_NUM_IS_POW2(x) (((x) & ((x) - 1)) == 0) +#define XP_NUM_IS_POWOF2(x) (((x) & ((x) - 1)) == 0) #define XP_LOOP_CONTINUE(id) goto __loop_ ## id ## _begin__; #define XP_LOOP_BREAK(id) goto __loop_ ## id ## _end__;