repo.or.cz
/
tangerine.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Use dos.library/CreateNewProc() instead of alib/CreateNewProcTags()
[tangerine.git]
/
compiler
/
clib
/
raise.c
blob
c7ee65a9112cae8b0cd6a7ed27fc9b04baf5f189
1
#include <unistd.h>
2
#include <signal.h>
3
4
int
raise
(
int
signal
)
5
{
6
kill
(
getpid
(),
signal
);
7
}
8