|
Zephyr API 3.6.99
|
Loading...
Searching...
No Matches
Go to the documentation of this file.
8#ifndef ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_ASSERT_H_
9#define ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_ASSERT_H_
16#if __STDC_VERSION__ >= 201112L
17#define static_assert _Static_assert
23#define assert(test) __ASSERT_NO_MSG(test)
27#define assert(test) ((void)0)