From: Jouni Malinen Date: Thu, 23 Apr 2020 22:35:36 +0000 (+0300) Subject: Remove now unused Boolean/TRUE/FALSE definitions X-Git-Tag: hostap_2_10~1403 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e81e2091b3876635395b6fe90f27b9b19df13bba;p=thirdparty%2Fhostap.git Remove now unused Boolean/TRUE/FALSE definitions The previous users were converted to C99 bool. Signed-off-by: Jouni Malinen --- 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)