mirror of
https://github.com/UpsilonNumworks/Upsilon.git
synced 2026-01-19 08:47:28 +01:00
7 lines
150 B
C
7 lines
150 B
C
#include <assert.h>
|
|
#include <stdlib.h>
|
|
|
|
void __attribute__((noinline)) __assert(const char * expression, const char * file, int line) {
|
|
abort();
|
|
}
|