summaryrefslogtreecommitdiff
path: root/perly.h
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2006-12-04 18:08:31 +0000
committerDave Mitchell <davem@fdisolutions.com>2006-12-04 18:08:31 +0000
commit123d08c9856c0c1cfafae2a631dd18e9539aaf13 (patch)
tree7885711b994ed53b671d5227e1760b00dd49564c /perly.h
parent6d5c990f28c2a18264defef032a496e2e3dfb7cd (diff)
downloadperl-123d08c9856c0c1cfafae2a631dd18e9539aaf13.tar.gz
fix some casting issues with perly.y / madly.y merger
p4raw-id: //depot/perl@29461
Diffstat (limited to 'perly.h')
-rw-r--r--perly.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/perly.h b/perly.h
index cadd5931d4..0c19d29aa7 100644
--- a/perly.h
+++ b/perly.h
@@ -193,10 +193,13 @@ typedef union YYSTYPE
GV *gvval;
#ifdef PERL_IN_MADLY_C
TOKEN* p_tkval;
- TOKEN* tkval;
+ TOKEN* i_tkval;
#else
char *p_tkval;
- I32 tkval;
+ I32 i_tkval;
+#endif
+#ifdef PERL_MAD
+ TOKEN* tkval;
#endif
}
/* Line 1529 of yacc.c. */