(_ISwbit): Protext use of parameter with parentheses.

This commit is contained in:
Ulrich Drepper 1998-12-05 20:32:18 +00:00
parent 685c3086ea
commit 4781309ddc

View File

@ -67,9 +67,9 @@ typedef unsigned long int wctype_t;
# include <endian.h>
# if __BYTE_ORDER == __BIG_ENDIAN
# define _ISwbit(bit) (1 << bit)
# define _ISwbit(bit) (1 << (bit))
# else /* __BYTE_ORDER == __LITTLE_ENDIAN */
# define _ISwbit(bit) (bit < 8 ? 1UL << bit << 24 : 1UL << (bit + 8))
# define _ISwbit(bit) ((bit) < 8 ? 1UL << (bit) << 24 : 1UL << ((bit) + 8))
# endif
enum