diff --git a/src/types.h b/src/types.h index fbdffb1..c18f90c 100644 --- a/src/types.h +++ b/src/types.h @@ -111,9 +111,6 @@ free((item)); \ #ifndef KERNEL_SPACE - -#define CHECK_BITFIELD(value, field) (((value) & (field)) == (field)) - #define max(a,b)__extension__\ ({ \ __typeof__ (a) _a = (a); \ @@ -130,6 +127,8 @@ free((item)); \ #endif /* not a KERNEL_SPACE */ +#define CHECK_BITFIELD(value, field) (((value) & (field)) == (field)) + static inline int randint(void) { int rnd;