abort.c 90 B

12345678
  1. #include <stdlib.h>
  2. #include <signal.h>
  3. void abort(void)
  4. {
  5. raise(SIGABRT);
  6. for (;;);
  7. }