diff options
Diffstat (limited to 'perlvars.h')
-rw-r--r-- | perlvars.h | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/perlvars.h b/perlvars.h index 3860345409..29093870cb 100644 --- a/perlvars.h +++ b/perlvars.h @@ -130,7 +130,7 @@ PERLVAR(Gthisexpr, I32) /* name id for nothing_in_common() */ PERLVAR(Glast_uni, char *) /* position of last named-unary op */ PERLVAR(Glast_lop, char *) /* position of last list operator */ PERLVAR(Glast_lop_op, OPCODE) /* last list operator */ -PERLVAR(Gin_my, bool) /* we're compiling a "my" declaration */ +PERLVAR(Gin_my, bool) /* we're compiling a "my" declaration */ PERLVAR(Gin_my_stash, HV *) /* declared class of this "my" declaration */ #ifdef FCRYPT PERLVAR(Gcryptseen, I32) /* has fast crypt() been initialized? */ @@ -200,3 +200,12 @@ PERLVAR(Gyyerrflag, int) PERLVAR(Gyychar, int) PERLVAR(Gyyval, YYSTYPE) PERLVAR(Gyylval, YYSTYPE) + +PERLVAR(Gglob_index, int) +PERLVAR(Gefloatbuf, char*) +PERLVAR(Gefloatsize, STRLEN) +PERLVAR(Gsrand_called, bool) +PERLVAR(Guudmap[256], char) +PERLVAR(Gbitcount, char *) +PERLVAR(Gfilter_debug, int) + |