diff options
author | Ben Morrow <ben@morrow.me.uk> | 2010-10-05 18:55:41 +0100 |
---|---|---|
committer | Father Chrysostomos <sprout@cpan.org> | 2010-10-06 23:28:55 -0700 |
commit | ef69c8fcaa2e29961b103ed4aaf7b24d5edd9f23 (patch) | |
tree | c20362f9dff4bbd1d01abfb4347b28fe910f7ba4 /perlvars.h | |
parent | 9ed9b795caa408a925999e1d90f9932e35b3ab10 (diff) | |
download | perl-ef69c8fcaa2e29961b103ed4aaf7b24d5edd9f23.tar.gz |
Remove MEMBER_TO_FPTR.
This is left over from PERL_OBJECT (see beeff2, 16c915, and so on).
Diffstat (limited to 'perlvars.h')
-rw-r--r-- | perlvars.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perlvars.h b/perlvars.h index 8fb8484c33..0e09ead367 100644 --- a/perlvars.h +++ b/perlvars.h @@ -158,8 +158,8 @@ PERLVARI(Gveto_cleanup, int, FALSE) /* exit without cleanup */ /* dummy variables that hold pointers to both runops functions, thus forcing * them *both* to get linked in (useful for Peek.xs, debugging etc) */ -PERLVARI(Grunops_std, runops_proc_t, MEMBER_TO_FPTR(Perl_runops_standard)) -PERLVARI(Grunops_dbg, runops_proc_t, MEMBER_TO_FPTR(Perl_runops_debug)) +PERLVARI(Grunops_std, runops_proc_t, Perl_runops_standard) +PERLVARI(Grunops_dbg, runops_proc_t, Perl_runops_debug) /* These are baked at compile time into any shared perl library. @@ -241,4 +241,4 @@ the Perl core) will normally return C<KEYWORD_PLUGIN_DECLINE>. =cut */ -PERLVARI(Gkeyword_plugin, Perl_keyword_plugin_t, MEMBER_TO_FPTR(Perl_keyword_plugin_standard)) +PERLVARI(Gkeyword_plugin, Perl_keyword_plugin_t, Perl_keyword_plugin_standard) |