diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2003-07-28 12:13:24 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2003-07-28 12:13:24 +0000 |
commit | 643157af7ab6b9560550325fafc5ed259fe9b954 (patch) | |
tree | a58fb8ddeff87bd8d94c212ddc664c22d879d1ed /perlvars.h | |
parent | 9820b33a3d2b674b636ac4dd779ef1bbe90492de (diff) | |
download | perl-643157af7ab6b9560550325fafc5ed259fe9b954.tar.gz |
Make Storable work with blead/maint by making PL_sv_placeholder
a true global, bump $VERSION to 2.08. Will take a look at the
portability issue of placeholders soon.
p4raw-id: //depot/perl@20263
Diffstat (limited to 'perlvars.h')
-rw-r--r-- | perlvars.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/perlvars.h b/perlvars.h index 081139969d..83124d805f 100644 --- a/perlvars.h +++ b/perlvars.h @@ -59,3 +59,7 @@ PERLVARI(Gsh_path, char *, SH_PATH)/* full path of shell */ * See perl.h macros PERL_FPU_INIT and PERL_FPU_{PRE,POST}_EXEC. */ PERLVAR(Gsigfpe_saved, Sighandler_t) +/* Restricted hashes placeholder value. + * The contents are never used, only the address. */ +PERLVAR(Gsv_placeholder, SV) + |