repo.or.cz
/
newlib-cygwin.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Cygwin: mmap: allow remapping part of an existing anonymous mapping
[newlib-cygwin.git]
/
newlib
/
libc
/
syscalls
/
syskill.c
blob
34b9f17def3fa175a49d5840e1e90c7df06c981f
1
/* connector for kill */
2
3
#include <reent.h>
4
#include <signal.h>
5
6
int
7
kill
(
int
pid
,
8
int
sig
)
9
{
10
return
_kill_r
(
_REENT
,
pid
,
sig
);
11
}