From: Steve Hay Date: Mon, 14 Nov 2005 09:39:02 +0000 (+0000) Subject: Fix code-before-declaration in boot_Storable added by 26107 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0f85a1b7c2a7214777c5cc9c0ac23b4df52ee784;p=p5sagit%2Fp5-mst-13.2.git Fix code-before-declaration in boot_Storable added by 26107 p4raw-id: //depot/perl@26119 --- diff --git a/ext/Storable/Storable.xs b/ext/Storable/Storable.xs index cd3a41a..537e464 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()