VSF Documented
assert.h
Go to the documentation of this file.
1// for VSF_ASSERT
3
4#ifdef __cplusplus
5extern "C" {
6#endif
7
8#undef assert
9
10#ifdef NDEBUG
11# define assert(...) ((void)0)
12#else
13# define assert VSF_ASSERT
14#endif
15
16#ifdef __cplusplus
17}
18#endif