1Author: @vcunat 2 3 Don't redefine bool and use the standard one instead. 4 5--- a/Onboard/osk/osk_module.h 6+++ b/Onboard/osk/osk_module.h 7@@ -28 +28 @@ 8-typedef enum { false, true } bool; 9+#include <stdbool.h> 10