13 lines
187 B
C++
13 lines
187 B
C++
|
|
#include <stdlib.h>
|
|
|
|
extern "C" {
|
|
void* __cxa_allocate_exception(size_t) {
|
|
abort();
|
|
}
|
|
|
|
void __cxa_throw(void *, void *, void (*)(void *)) {
|
|
abort();
|
|
}
|
|
}
|
|
|