Files
Upsilon/liba/src/assert.c
Émilie Feral 51284296e7 [ion][liba] Add 'noinline' attribute for symbols that have to be in
internal flash (we don't need to consider these symbol dependencies
though)
2019-08-08 15:54:42 +02:00

7 lines
150 B
C

#include <assert.h>
#include <stdlib.h>
void __attribute__((noinline)) __assert(const char * expression, const char * file, int line) {
abort();
}