From 2ba0a33446175abdd2d912cfef2a9fc3aaab022e Mon Sep 17 00:00:00 2001 From: Attie Grande Date: Mon, 22 Jan 2024 22:34:51 +0000 Subject: [PATCH] bindesc: Add include zephyr/sys/util_macro.h Including `zephyr/bindesc.h` without `zephyr/sys/util_macro.h` already present will cause a compile error. As it's a reasonable expectation that this should work, this patch adds the missing include. Signed-off-by: Attie Grande --- include/zephyr/bindesc.h | 2 ++ 1 file changed, 2 insertions(+) diff --git a/include/zephyr/bindesc.h b/include/zephyr/bindesc.h index 4280cf91d21f..a45e69a2b9ce 100644 --- a/include/zephyr/bindesc.h +++ b/include/zephyr/bindesc.h @@ -7,6 +7,8 @@ #ifndef ZEPHYR_INCLUDE_ZEPHYR_BINDESC_H_ #define ZEPHYR_INCLUDE_ZEPHYR_BINDESC_H_ +#include + #ifdef __cplusplus extern "C" { #endif /* __cplusplus */