repo.or.cz
/
uclibc-ng.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
test: fix tests including non-wrapper libgcc exception handling code
[uclibc-ng.git]
/
libc
/
signal
/
raise.c
blob
d9dbab672921c9159509468100d6cf3ca6aa699f
1
/* Copyright (C) 1995,1996 Robert de Bath <rdebath@cix.compulink.co.uk>
2
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
3
*/
4
5
#include <unistd.h>
6
#include <signal.h>
7
8
int
raise
(
int
signo
)
9
{
10
return
kill
(
getpid
(),
signo
);
11
}
12
libc_hidden_def
(
raise
)