9os

Experimental kernel using plan9 ideas for embedded device
git clone git://git.simple-cc.org/9os
Log | Files | Refs | README | LICENSE

raise.c (112B)


      1 #include <stdlib.h>
      2 
      3 extern void panic(const char *msg);
      4 
      5 #undef raise
      6 
      7 int
      8 raise(int sig)
      9 {
     10 	panic("raise");
     11 }