1From 99cf89555313056d3a8fa54b21d02dc880b363e1 Mon Sep 17 00:00:00 2001
2From: Jouni Malinen <jouni@codeaurora.org>
3Date: Mon, 20 Apr 2020 20:29:31 +0300
4Subject: [PATCH] Include stdbool.h to allow C99 bool to be used
5
6We have practically started requiring some C99 features, so might as
7well finally go ahead and bring in the C99 bool as well.
8
9Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
10[geomatsi@gmail.com: backport from upstream]
11Signed-off-by: Sergey Matyukevich <geomatsi@gmail.com>
12[yann.morin.1998@free.fr: keep upstream sha1 in header, drop numbering]
13Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
14---
15 src/utils/includes.h | 1 +
16 1 file changed, 1 insertion(+)
17
18diff --git a/src/utils/includes.h b/src/utils/includes.h
19index 75513fc8c..741fc9c14 100644
20--- a/src/utils/includes.h
21+++ b/src/utils/includes.h
22@@ -18,6 +18,7 @@
23
24 #include <stdlib.h>
25 #include <stddef.h>
26+#include <stdbool.h>
27 #include <stdio.h>
28 #include <stdarg.h>
29 #include <string.h>
30--
312.25.1
32
33