diff options
author | Steve Hay <SteveHay@planit.com> | 2005-11-14 09:39:02 +0000 |
---|---|---|
committer | Steve Hay <SteveHay@planit.com> | 2005-11-14 09:39:02 +0000 |
commit | 0f85a1b7c2a7214777c5cc9c0ac23b4df52ee784 (patch) | |
tree | 8a81ff7b249863d75fb78390e7e1ee598a27390b /ext/Storable/Storable.xs | |
parent | 548074dfae7ec3070e1e05e09a994816bd8d5f53 (diff) | |
download | perl-0f85a1b7c2a7214777c5cc9c0ac23b4df52ee784.tar.gz |
Fix code-before-declaration in boot_Storable added by 26107
p4raw-id: //depot/perl@26119
Diffstat (limited to 'ext/Storable/Storable.xs')
-rw-r--r-- | ext/Storable/Storable.xs | 2 |
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() |