Subversion Repositories Kolibri OS

Rev

Go to most recent revision | Blame | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <stdlib.h>
  3. #include <unistd.h>
  4. #include <io.h>
  5. #include <assert.h>
  6.  
  7. static char msg[] = "Abort!\n";
  8.  
  9. void abort()
  10. {
  11.  __libclog_printf(msg);
  12.  exit(-1);
  13. }
  14.