mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-09-02 06:52:24 +00:00
move misc/__assert.h to sys/__assert.h and create a shim for backward-compatibility. No functional changes to the headers. A warning in the shim can be controlled with CONFIG_COMPAT_INCLUDES. Related to #16539 Signed-off-by: Anas Nashif <anas.nashif@intel.com>
34 lines
586 B
C
34 lines
586 B
C
/*
|
|
* Copyright (c) 2016 Intel Corporation
|
|
* Copyright (c) 2016, Freescale Semiconductor, Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
#ifndef ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_ASSERT_H_
|
|
#define ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_ASSERT_H_
|
|
|
|
#include <sys/__assert.h>
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#else
|
|
#define static_assert _Static_assert
|
|
#endif
|
|
|
|
#ifndef NDEBUG
|
|
#ifndef assert
|
|
#define assert(test) __ASSERT_NO_MSG(test)
|
|
#endif
|
|
#else
|
|
#ifndef assert
|
|
#define assert(test) ((void)0)
|
|
#endif
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
|
|
#endif /* ZEPHYR_LIB_LIBC_MINIMAL_INCLUDE_ASSERT_H_ */
|