summaryrefslogtreecommitdiff
path: root/perlvars.h
diff options
context:
space:
mode:
authorGurusamy Sarathy <gsar@cpan.org>1998-09-24 04:29:14 +0000
committerGurusamy Sarathy <gsar@cpan.org>1998-09-24 04:29:14 +0000
commitd3b6f988cac8d2811966703f0abfa69a19d8e06a (patch)
treeda11f4f99732b2662341250bdfcf06d11c7004be /perlvars.h
parent5f08fbcd6341ee0f8f3c7dfe721098c3bfae1c67 (diff)
downloadperl-d3b6f988cac8d2811966703f0abfa69a19d8e06a.tar.gz
move yyglobal decls from perly.c to perlvars.h, regen headers, tweak
perly_c.diff p4raw-id: //depot/perl@1864
Diffstat (limited to 'perlvars.h')
-rw-r--r--perlvars.h41
1 files changed, 25 insertions, 16 deletions
diff --git a/perlvars.h b/perlvars.h
index 4ccfc58f86..98e78c9002 100644
--- a/perlvars.h
+++ b/perlvars.h
@@ -171,22 +171,22 @@ PERLVARI(Gnumeric_local, bool, TRUE)
#endif /* !USE_LOCALE_NUMERIC */
/* utf8 character classes */
-PERLVAR(Gutf8_alnum, SV *)
-PERLVAR(Gutf8_alpha, SV *)
-PERLVAR(Gutf8_space, SV *)
-PERLVAR(Gutf8_digit, SV *)
-PERLVAR(Gutf8_upper, SV *)
-PERLVAR(Gutf8_lower, SV *)
-PERLVAR(Gutf8_print, SV *)
-PERLVAR(Gutf8_mark, SV *)
-PERLVAR(Gutf8_toupper, SV *)
-PERLVAR(Gutf8_totitle, SV *)
-PERLVAR(Gutf8_tolower, SV *)
-PERLVAR(Glast_swash_hv, HV *)
-PERLVAR(Glast_swash_klen, U32)
-PERLVAR(Glast_swash_key[10], U8)
-PERLVAR(Glast_swash_tmps, U8 *)
-PERLVAR(Glast_swash_slen, STRLEN)
+PERLVAR(Gutf8_alnum, SV *)
+PERLVAR(Gutf8_alpha, SV *)
+PERLVAR(Gutf8_space, SV *)
+PERLVAR(Gutf8_digit, SV *)
+PERLVAR(Gutf8_upper, SV *)
+PERLVAR(Gutf8_lower, SV *)
+PERLVAR(Gutf8_print, SV *)
+PERLVAR(Gutf8_mark, SV *)
+PERLVAR(Gutf8_toupper, SV *)
+PERLVAR(Gutf8_totitle, SV *)
+PERLVAR(Gutf8_tolower, SV *)
+PERLVAR(Glast_swash_hv, HV *)
+PERLVAR(Glast_swash_klen, U32)
+PERLVAR(Glast_swash_key[10], U8)
+PERLVAR(Glast_swash_tmps, U8 *)
+PERLVAR(Glast_swash_slen, STRLEN)
/* constants (these are not literals to facilitate pointer comparisons) */
PERLVARIC(GYes, char *, "1")
@@ -196,3 +196,12 @@ PERLVARIC(Gpatleave, char *, "\\.^$@dDwWsSbB+*?|()-nrtfeaxc0123456789[{]}")
PERLVAR(Gspecialsv_list[4],SV *) /* from byterun.h */
+/* perly.c globals */
+PERLVAR(Gyydebug, int)
+PERLVAR(Gyynerrs, int)
+PERLVAR(Gyyerrflag, int)
+PERLVAR(Gyychar, int)
+PERLVAR(Gyyssp, short*)
+PERLVAR(Gyyvsp, YYSTYPE*)
+PERLVAR(Gyyval, YYSTYPE)
+PERLVAR(Gyylval, YYSTYPE)