diff options
author | Nicholas Clark <nick@ccl4.org> | 2006-04-14 16:18:30 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2006-04-14 16:18:30 +0000 |
commit | b65b4fdfe53460eecfaecff3c500bb40665bb82f (patch) | |
tree | 90f0937b6ba4e50d73fd9ae7020c309320626aed /pp_ctl.c | |
parent | 794a0d33eec8a6056eaa14b2e6eae594c8004a65 (diff) | |
download | perl-b65b4fdfe53460eecfaecff3c500bb40665bb82f.tar.gz |
Replace explict "/dev/null" with BIT_BUCKET, which varies by platform.
p4raw-id: //depot/perl@27802
Diffstat (limited to 'pp_ctl.c')
-rw-r--r-- | pp_ctl.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -3220,7 +3220,8 @@ PP(pp_require) } if (!tryrsfp) { - tryrsfp = PerlIO_open("/dev/null", PERL_SCRIPT_MODE); + tryrsfp = PerlIO_open(BIT_BUCKET, + PERL_SCRIPT_MODE); } } SP--; |