]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Include stdbool.h to allow C99 bool to be used
authorJouni Malinen <jouni@codeaurora.org>
Mon, 20 Apr 2020 17:29:31 +0000 (20:29 +0300)
committerJouni Malinen <j@w1.fi>
Mon, 20 Apr 2020 17:29:31 +0000 (20:29 +0300)
We have practically started requiring some C99 features, so might as
well finally go ahead and bring in the C99 bool as well.

Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
src/utils/includes.h

index 75513fc8c1efd6eb72f18769ff38b90a3a422aba..741fc9c143e453c92ab3bd3216d583006d353cd7 100644 (file)
@@ -18,6 +18,7 @@
 
 #include <stdlib.h>
 #include <stddef.h>
+#include <stdbool.h>
 #include <stdio.h>
 #include <stdarg.h>
 #include <string.h>