summaryrefslogtreecommitdiff
path: root/ext/POSIX/POSIX.pm
diff options
context:
space:
mode:
Diffstat (limited to 'ext/POSIX/POSIX.pm')
-rw-r--r--ext/POSIX/POSIX.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/POSIX/POSIX.pm b/ext/POSIX/POSIX.pm
index 6656443483..2885c0d84c 100644
--- a/ext/POSIX/POSIX.pm
+++ b/ext/POSIX/POSIX.pm
@@ -11,7 +11,7 @@ require Exporter;
require DynaLoader;
@ISA = qw(Exporter DynaLoader);
-$VERSION = "1.01" ;
+$VERSION = "1.02" ;
%EXPORT_TAGS = (
@@ -386,7 +386,7 @@ sub kill {
sub raise {
usage "raise(sig)" if @_ != 1;
- kill $$, $_[0]; # Is this good enough?
+ kill $_[0], $$; # Is this good enough?
}
sub offsetof {