summaryrefslogtreecommitdiff
path: root/embed.h
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2010-08-20 20:44:39 +0100
committerNicholas Clark <nick@ccl4.org>2010-08-20 20:44:39 +0100
commitecf9cdab78811498b3ffea48cfdfb09f678050d2 (patch)
tree3eaed8f04cd6d9eb3797bf04b2fc5349ff394299 /embed.h
parentb7781c7ebca16bcc1cb2792cc1754c7d44875050 (diff)
downloadperl-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.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/embed.h b/embed.h
index 499808be38..9cde4db639 100644
--- a/embed.h
+++ b/embed.h
@@ -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)