From b3de3e27de8bec32ebc0500457993114c9732918 Mon Sep 17 00:00:00 2001 From: Gunar Schorcht Date: Fri, 10 Dec 2021 13:28:13 +0100 Subject: [PATCH] tests/ieee802154_submac: fix compilation with NDEBUG --- tests/ieee802154_submac/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/ieee802154_submac/main.c b/tests/ieee802154_submac/main.c index 80982e3602..77a36ee26f 100644 --- a/tests/ieee802154_submac/main.c +++ b/tests/ieee802154_submac/main.c @@ -18,7 +18,6 @@ * @} */ -#include #include #include #include @@ -33,6 +32,7 @@ #include "net/ieee802154.h" #include "net/netdev/ieee802154_submac.h" #include "net/l2util.h" +#include "test_utils/expect.h" #include "ztimer.h" #include "common.h"