scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | 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 }