1/* 2 * abort.c 3 */ 4 5#include <stdlib.h> 6#include <unistd.h> 7 8void abort(void) 9{ 10 _exit(255); 11} 12