From 85e6fe838fb25b257a1b363debf8691c0992ef71 Mon Sep 17 00:00:00 2001 From: Larry Wall Date: Wed, 4 May 1994 23:00:00 +0000 Subject: perl 5.0 alpha 9 [editor's note: the sparc executables have not been included, and emacs backup files have been removed] --- lib/auto/POSIX/kill.al | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 lib/auto/POSIX/kill.al (limited to 'lib/auto/POSIX/kill.al') diff --git a/lib/auto/POSIX/kill.al b/lib/auto/POSIX/kill.al new file mode 100644 index 0000000000..138a6d72f4 --- /dev/null +++ b/lib/auto/POSIX/kill.al @@ -0,0 +1,9 @@ +# NOTE: Derived from POSIX.pm. Changes made here will be lost. +package POSIX; + +sub kill { + usage "kill(pid, sig)", caller if @_ != 2; + kill $_[1], $_[0]; +} + +1; -- cgit v1.2.1