|
Zephyr API 3.6.99
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
8#ifndef ZEPHYR_INCLUDE_SYS_CHECK_H_
9#define ZEPHYR_INCLUDE_SYS_CHECK_H_
13#if defined(CONFIG_ASSERT_ON_ERRORS)
14#define CHECKIF(expr) \
15 __ASSERT_NO_MSG(!(expr)); \
17#elif defined(CONFIG_NO_RUNTIME_CHECKS)
21#define CHECKIF(expr) \