1234567891011121314151617181920212223242526272829 |
- #undef NDEBUG
- #include <assert.h>
- #include <stdlib.h>
- void __aeabi_assert(const char *assertion, const char *file, unsigned int line);
- void __aeabi_assert(const char *assertion, const char *file, unsigned int line)
- {
- __assert (assertion, file, line, NULL);
- }
|