From e81e2091b3876635395b6fe90f27b9b19df13bba Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Fri, 24 Apr 2020 01:35:36 +0300 Subject: [PATCH] Remove now unused Boolean/TRUE/FALSE definitions The previous users were converted to C99 bool. Signed-off-by: Jouni Malinen --- src/common/defs.h | 9 --------- 1 file changed, 9 deletions(-) diff --git a/src/common/defs.h b/src/common/defs.h index f62c3ceee..bcf6f543b 100644 --- a/src/common/defs.h +++ b/src/common/defs.h @@ -9,15 +9,6 @@ #ifndef DEFS_H #define DEFS_H -#ifdef FALSE -#undef FALSE -#endif -#ifdef TRUE -#undef TRUE -#endif -typedef enum { FALSE = 0, TRUE = 1 } Boolean; - - #define WPA_CIPHER_NONE BIT(0) #define WPA_CIPHER_WEP40 BIT(1) #define WPA_CIPHER_WEP104 BIT(2)