1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-26 15:03:53 +01:00

tests/si1133: add missing stdbool.h include

Fix compilation error on native platform where bool type is used but
stdbool.h is not explicitly included.

On many platforms (ARM, AVR, etc.), stdbool.h is indirectly included
via CPU headers, but on native this is not the case.

Signed-off-by: Gilles DOFFE <g.doffe@gmail.com>
This commit is contained in:
Gilles DOFFE 2025-11-03 00:54:11 +01:00
parent ecc8bda62f
commit 75b178f638

View File

@ -19,6 +19,7 @@
*/
#include <stdio.h>
#include <stdbool.h>
#include <inttypes.h>
#include "kernel_defines.h"