diff options
author | Nicholas Clark <nick@ccl4.org> | 2011-05-01 21:13:01 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2011-06-12 16:15:22 +0200 |
commit | 9e08d3a49aaebdf17eb8671b022395f689827205 (patch) | |
tree | 84871d2363fb941775d77d23043a1ad60c23d465 /perlvars.h | |
parent | 457c538539eca0f3c596861d7d14ab0c0e9ee438 (diff) | |
download | perl-9e08d3a49aaebdf17eb8671b022395f689827205.tar.gz |
In perlvar.h, move the always-present globals above those conditionally compiled
Rename PL_interp_size_5_10_0 to PL_interp_size_5_16_0, as it is only intended to
track interpreter size within (forwards) binary compatible maintenance branches.
Diffstat (limited to 'perlvars.h')
-rw-r--r-- | perlvars.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perlvars.h b/perlvars.h index 2facbeba78..bad7a16d8b 100644 --- a/perlvars.h +++ b/perlvars.h @@ -159,8 +159,8 @@ PERLVARI(Gglobal_struct_size, U16, sizeof(struct perl_vars)) /* This will be useful for subsequent releases, because this has to be the same in your libperl as in main(), else you have a mismatch and must abort. */ -PERLVARI(Ginterp_size_5_10_0, U16, - PERL_INTERPRETER_SIZE_UPTO_MEMBER(PERL_LAST_5_10_0_INTERP_MEMBER)) +PERLVARI(Ginterp_size_5_16_0, U16, + PERL_INTERPRETER_SIZE_UPTO_MEMBER(PERL_LAST_5_16_0_INTERP_MEMBER)) #endif /* |