mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-12-01 11:48:23 -05:00
common: Avoid conflict with __bitwise macro from linux/types.h
Undefine the __bitwise macro before defining it to avoid conflicts with the one from linux/types.h; the same is done some lines above when __CHECKER__ is defined. Fixes the following warning: In file included from ../src/l2_packet/l2_packet_linux.c:15:0: hostap/src/utils/common.h:438:0: warning: "__bitwise" redefined #define __bitwise In file included from /usr/include/linux/filter.h:9:0, from ../src/l2_packet/l2_packet_linux.c:13: /usr/include/linux/types.h:21:0: note: this is the location of the previous definition #define __bitwise __bitwise__ Signed-off-by: Beniamino Galvani <bgalvani@redhat.com>
This commit is contained in:
parent
4109555ef7
commit
f5b74b966c
@ -435,6 +435,7 @@ void perror(const char *s);
|
|||||||
#define __bitwise __attribute__((bitwise))
|
#define __bitwise __attribute__((bitwise))
|
||||||
#else
|
#else
|
||||||
#define __force
|
#define __force
|
||||||
|
#undef __bitwise
|
||||||
#define __bitwise
|
#define __bitwise
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user