diff options
author | Nicholas Clark <nick@ccl4.org> | 2010-08-20 20:44:39 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2010-08-20 20:44:39 +0100 |
commit | ecf9cdab78811498b3ffea48cfdfb09f678050d2 (patch) | |
tree | 3eaed8f04cd6d9eb3797bf04b2fc5349ff394299 /embed.h | |
parent | b7781c7ebca16bcc1cb2792cc1754c7d44875050 (diff) | |
download | perl-ecf9cdab78811498b3ffea48cfdfb09f678050d2.tar.gz |
Move the declaration for more_bodies outside of an #if defined(PERL_IN_SV_C)
It used to be a static function, hence the location, and I failed to spot that
I needed to move it, when I edited it to be non-static.
Problem spotted by Jerry D. Hedden.
Diffstat (limited to 'embed.h')
-rw-r--r-- | embed.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -1614,8 +1614,6 @@ # endif #ifdef PERL_CORE #define more_sv S_more_sv -#endif -#ifdef PERL_CORE #define sv_2iuv_common S_sv_2iuv_common #define glob_assign_glob S_glob_assign_glob #define glob_assign_ref S_glob_assign_ref @@ -4076,6 +4074,8 @@ #define anonymise_cv_maybe(a,b) S_anonymise_cv_maybe(aTHX_ a,b) #endif #endif +#ifdef PERL_CORE +#endif #if defined(PERL_IN_TOKE_C) #ifdef PERL_CORE #define check_uni() S_check_uni(aTHX) |