Go to the documentation of this file.
12 #include <__internal.h>
16 void __assert(
const char *file,
const char *line,
const char *
function,
24 #define assert(ignore) ((void)0)
27 #define assert(expression) \
28 ((expression) ? (void)0 \
29 : __assert(__FILE__, _VALUE_TO_STRING(__LINE__), __func__, \