diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-01-10 10:12:10 +0000 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-01-10 11:19:18 +0000 |
commit | d8ef1fcdce21e8d5905a1ed77bc1caa307b2b79e (patch) | |
tree | b4cbfb1d1239da334e10e1deee3c3fa1d0fe4aba /pp_proto.h | |
parent | 111d382d531b38ae57c1b946e9ab48608cf58309 (diff) | |
download | perl-d8ef1fcdce21e8d5905a1ed77bc1caa307b2b79e.tar.gz |
Merge the implementations of pp_e{host,net,proto,serv}ent.
PL_op_desc[] rather than PL_op_name(), as the OPs are internally named e*ent,
but implement the ent*ent functions, and when unimplemented report themselves
using the function name. No need for OP_DESC(), as the switch statement means
that we can't encounter OP_CUSTOM.
Diffstat (limited to 'pp_proto.h')
-rw-r--r-- | pp_proto.h | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/pp_proto.h b/pp_proto.h index 41f03e0a4f..05855367c7 100644 --- a/pp_proto.h +++ b/pp_proto.h @@ -52,7 +52,6 @@ PERL_CALLCONV OP *Perl_pp_divide(pTHX); PERL_CALLCONV OP *Perl_pp_each(pTHX); PERL_CALLCONV OP *Perl_pp_egrent(pTHX); PERL_CALLCONV OP *Perl_pp_ehostent(pTHX); -PERL_CALLCONV OP *Perl_pp_enetent(pTHX); PERL_CALLCONV OP *Perl_pp_enter(pTHX); PERL_CALLCONV OP *Perl_pp_entereval(pTHX); PERL_CALLCONV OP *Perl_pp_entergiven(pTHX); @@ -63,10 +62,8 @@ PERL_CALLCONV OP *Perl_pp_entertry(pTHX); PERL_CALLCONV OP *Perl_pp_enterwhen(pTHX); PERL_CALLCONV OP *Perl_pp_enterwrite(pTHX); PERL_CALLCONV OP *Perl_pp_eof(pTHX); -PERL_CALLCONV OP *Perl_pp_eprotoent(pTHX); PERL_CALLCONV OP *Perl_pp_epwent(pTHX); PERL_CALLCONV OP *Perl_pp_eq(pTHX); -PERL_CALLCONV OP *Perl_pp_eservent(pTHX); PERL_CALLCONV OP *Perl_pp_exec(pTHX); PERL_CALLCONV OP *Perl_pp_exists(pTHX); PERL_CALLCONV OP *Perl_pp_exit(pTHX); |