Home
       abort.c - scc - simple c99 compiler
  HTML git clone git://git.simple-cc.org/scc
   DIR Log
   DIR Files
   DIR Refs
   DIR Submodules
   DIR README
   DIR LICENSE
       ---
       abort.c (106B)
       ---
            1 #include <signal.h>
            2 #include <stdlib.h>
            3 
            4 #undef abort
            5 
            6 void
            7 abort(void)
            8 {
            9         raise(SIGABRT);
           10         _Exit(127);
           11 }