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