blob: a7706a72438786feb024385da7ff7890ee7b6ae5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
# NOTE: Derived from POSIX.pm. Changes made here will be lost.
package POSIX;
sub waitpid {
usage "waitpid(pid, statusvariable, options)", caller if @_ != 3;
local $result = waitpid($_[0], $_[2]);
$_[1] = $?;
$result;
}
1;
|