diff options
author | Perl 5 Porters <perl5-porters@africa.nicoh.com> | 1996-09-08 20:39:59 +0000 |
---|---|---|
committer | Andy Dougherty <doughera@lafcol.lafayette.edu> | 1996-09-08 20:39:59 +0000 |
commit | 13776d5a5d849dbac5bdbd98560852fb47797581 (patch) | |
tree | 223df6f033f37a3def8e87c09b928f6e9f2434d9 /pod/perlipc.pod | |
parent | 47e2936380730fcfbac801351978cdee717e9302 (diff) | |
download | perl-13776d5a5d849dbac5bdbd98560852fb47797581.tar.gz |
Document correct C<use POSIX ":wait_h";> usage.
Diffstat (limited to 'pod/perlipc.pod')
-rw-r--r-- | pod/perlipc.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlipc.pod b/pod/perlipc.pod index 99379e9030..5f600b47ae 100644 --- a/pod/perlipc.pod +++ b/pod/perlipc.pod @@ -111,7 +111,7 @@ signal handlers like this: or even the more elaborate: - use POSIX "wait_h"; + use POSIX ":wait_h"; sub REAPER { my $child; $SIG{CHLD} = \&REAPER; # loathe sysV |