diff options
author | Father Chrysostomos <sprout@cpan.org> | 2011-08-19 23:29:53 -0700 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2011-08-19 23:29:53 -0700 |
commit | 4d3492ca676f32fcd47097dcfe8d0e3edfcd0209 (patch) | |
tree | dce840e5a39e203e3294dc9538e78f3159c9106f /t | |
parent | a264864ddee69cca13647105cf328e3f5b3fbf01 (diff) | |
download | perl-4d3492ca676f32fcd47097dcfe8d0e3edfcd0209.tar.gz |
&CORE::fork()
In commit 7fa5bd9b5, I not only forgot about getpwent (see commit
cc131e4, in which I mistakenly called it pwent), but fork as well.
Again, all this commit has to do is add it to the list of ‘ampable’
functions in gv.c. The rest already works.
Diffstat (limited to 't')
-rw-r--r-- | t/op/coresubs.t | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/t/op/coresubs.t b/t/op/coresubs.t index 0aa9c38ca9..d1a2edc298 100644 --- a/t/op/coresubs.t +++ b/t/op/coresubs.t @@ -69,6 +69,8 @@ test_proto $_ for qw( endgrent endhostent endnetent endprotoent endpwent endservent ); +test_proto 'fork'; + test_proto "get$_" for qw ' grent hostent login netent ppid protoent |