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