From: Ian Jackson Date: Thu, 11 Aug 2022 20:28:13 +0000 (+0100) Subject: prefork-interp: fix namespace (NULL was being strange) X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ian/git?p=chiark-utils.git;a=commitdiff_plain;h=5e9ad82115692907374016d0c052e6398f9b6c54 prefork-interp: fix namespace (NULL was being strange) Signed-off-by: Ian Jackson --- diff --git a/perl/Prefork.pm b/perl/Prefork.pm index 28fe395..6527b79 100644 --- a/perl/Prefork.pm +++ b/perl/Prefork.pm @@ -6,7 +6,7 @@ our @EXPORT = qw(initialisation_complete); use Carp; use Fcntl qw(F_GETFL F_SETFL O_NONBLOCK); -use POSIX; +use POSIX qw(_exit setsid); use Sys::Syslog; our $logger;