summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2005-11-14 09:39:02 +0000
committerSteve Hay <SteveHay@planit.com>2005-11-14 09:39:02 +0000
commit0f85a1b7c2a7214777c5cc9c0ac23b4df52ee784 (patch)
tree8a81ff7b249863d75fb78390e7e1ee598a27390b
parent548074dfae7ec3070e1e05e09a994816bd8d5f53 (diff)
downloadperl-0f85a1b7c2a7214777c5cc9c0ac23b4df52ee784.tar.gz
Fix code-before-declaration in boot_Storable added by 26107
p4raw-id: //depot/perl@26119
-rw-r--r--ext/Storable/Storable.xs2
1 files changed, 2 insertions, 0 deletions
diff --git a/ext/Storable/Storable.xs b/ext/Storable/Storable.xs
index cd3a41a92e..537e4644e9 100644
--- a/ext/Storable/Storable.xs
+++ b/ext/Storable/Storable.xs
@@ -6342,6 +6342,7 @@ MODULE = Storable PACKAGE = Storable
PROTOTYPES: ENABLE
BOOT:
+{
HV *stash = gv_stashpvn("Storable", 8, TRUE);
newCONSTSUB(stash, "BIN_MAJOR", newSViv(STORABLE_BIN_MAJOR));
newCONSTSUB(stash, "BIN_MINOR", newSViv(STORABLE_BIN_MINOR));
@@ -6356,6 +6357,7 @@ BOOT:
#ifdef USE_56_INTERWORK_KLUDGE
gv_fetchpv("Storable::interwork_56_64bit", GV_ADDMULTI, SVt_PV);
#endif
+}
void
init_perinterp()