mirror of
https://github.com/openharmony/third_party_musl2.git
synced 2026-07-01 10:25:07 -04:00
a7a91cd947
isolate changes, keep orignal musl sources clean. Signed-off-by: Caoruihong <crh.cao@huawei.com> Change-Id: Id7f3a5109771f93d397e30febba36e09ddaf4f36
33 lines
735 B
C
33 lines
735 B
C
#include <features.h>
|
|
|
|
#undef assert
|
|
|
|
#ifdef NDEBUG
|
|
#define assert(x) (void)0
|
|
#else
|
|
#define assert(x) ((void)((x) || (__assert_fail(#x, __FILE__, __LINE__, __func__),0)))
|
|
#endif
|
|
|
|
#ifdef CONFIG_DEBUG
|
|
#define DEBUGASSERT(f) \
|
|
{ if (!(f)) up_assert((const uint8_t *)__FILE__, (int)__LINE__); }
|
|
#else
|
|
#define DEBUGASSERT(f)
|
|
#endif
|
|
|
|
#if __STDC_VERSION__ >= 201112L && !defined(__cplusplus)
|
|
#undef static_assert
|
|
#define static_assert _Static_assert
|
|
#endif
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
_Noreturn void __assert(const char *, int, const char *);
|
|
_Noreturn void __assert2(const char *, int, const char *, const char *);
|
|
_Noreturn void __assert_fail (const char *, const char *, int, const char *);
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|