diff options
Diffstat (limited to 'intrpvar.h')
-rw-r--r-- | intrpvar.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/intrpvar.h b/intrpvar.h index baa5f98896..e87abf5122 100644 --- a/intrpvar.h +++ b/intrpvar.h @@ -64,7 +64,12 @@ PERLVAR(I, markstack, I32 *) /* stack_sp locations we're PERLVAR(I, markstack_ptr, I32 *) PERLVAR(I, markstack_max, I32 *) +#ifdef PERL_HASH_RANDOMIZE_KEYS +#ifdef USE_PERL_PERTURB_KEYS +PERLVARI(I, hash_rand_bits_enabled, U8, 1) /* used to randomize hash stuff 0 == no-random, 1 == random, 2 == determinsitic */ +#endif PERLVARI(I, hash_rand_bits, UV, 0) /* used to randomize hash stuff */ +#endif PERLVAR(I, strtab, HV *) /* shared string table */ /* Fields used by magic variables such as $@, $/ and so on */ |