repo.or.cz
/
msysgit
/
historical-msysgit.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Initial bulk commit for "Git on MSys"
[msysgit/historical-msysgit.git]
/
lib
/
perl5
/
5.6.1
/
msys
/
auto
/
POSIX
/
kill.al
blob
b7bb7e45f191565fcf16cde73f5583f0dad2220b
1
# NOTE: Derived from ../../lib/POSIX.pm.
2
# Changes made here will be lost when autosplit again.
3
# See AutoSplit.pm.
4
package POSIX;
5
6
#line 214 "../../lib/POSIX.pm (autosplit into ../../lib/auto/POSIX/kill.al)"
7
sub kill {
8
usage "kill(pid, sig)" if @_ != 2;
9
CORE::kill $_[1], $_[0];
10
}
11
12
# end of POSIX::kill
13
1;