API Reference Manual  1.45.0
api/abi-default/debug.h
Go to the documentation of this file.
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright (c) 2015-2018 Linaro Limited
3  */
4 
11 #ifndef ODP_ABI_DEBUG_H_
12 #define ODP_ABI_DEBUG_H_
13 
14 #ifdef __cplusplus
15 extern "C" {
16 #endif
17 
23 #ifndef __cplusplus
24 #define ODP_STATIC_ASSERT(cond, msg) _Static_assert(cond, msg)
25 #else
26 #define ODP_STATIC_ASSERT(cond, msg) static_assert(cond, msg)
27 #endif
28 
29 #ifdef __cplusplus
30 }
31 #endif
32 
33 #endif