Added missing libsw library

This commit is contained in:
Guilhem Lavaux 2013-03-01 15:43:05 -05:00
parent dd5e51c09c
commit 9dff8cfb5a
57 changed files with 13454 additions and 0 deletions

6
external/libsdf/libsw/raise.c vendored Normal file
View file

@ -0,0 +1,6 @@
#include <unistd.h>
#include <signal.h>
int raise(int sig){
return kill(getpid(), sig);
}