1 #include "stdlib.h" 2 #include "string.h" 3 abort(void)4 void abort(void) { 5 printf("System was being aborted\n"); 6 while (1); 7 } 8