11 lines
137 B
C
11 lines
137 B
C
|
|
#include <stdlib.h>
|
||
|
|
|
||
|
|
extern void __libc_assert_failed(
|
||
|
|
const char *file,
|
||
|
|
int line,
|
||
|
|
const char *func,
|
||
|
|
const char *cond)
|
||
|
|
{
|
||
|
|
abort();
|
||
|
|
}
|