2025-06-18 16:11:33 +02:00

11 lines
211 B
Diff

Author: @vcunat
Don't redefine bool and use the standard one instead.
--- a/Onboard/osk/osk_module.h
+++ b/Onboard/osk/osk_module.h
@@ -28 +28 @@
-typedef enum { false, true } bool;
+#include <stdbool.h>