abort.c (95B)
1 #include <stdlib.h> 2 3 void abort() 4 { 5 exit(1); // No signals 6 } 7 8 void __stack_chk_fail(void) { }