- Give PCI controllers lower unit numbers than legacy controllers.
[cake.git] / compiler / clib / raise.c
blob645b490d0ed637d00f08cc38f9b1ed2de08ff7a9
1 #include <unistd.h>
2 #include <signal.h>
4 /*****************************************************************************
6 NAME */
8 int raise(
10 /* SYNOPSIS */
11 int signal)
13 /* FUNCTION
15 INPUTS
17 RESULT
19 NOTES
21 EXAMPLE
23 BUGS
25 SEE ALSO
27 INTERNALS
29 ******************************************************************************/
31 kill(getpid(), signal);
32 return 0; // disable compiler warning