...
In this example, a programmer working with a known \ <assert.h\>h> is attempting to subvert the standard assert
functionality so that assertions are always made, regardless of whether ndebug
is set.
...
Code Block | ||
---|---|---|
| ||
#include <assert.h> void myassert(int e) { assert(e); /* other verification ... */ } |
...