diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-03-19 20:22:07 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-03-19 20:22:07 +0000 |
commit | 1e0e26cb26fde01fd11e7cf9703ff3045aed4e51 (patch) | |
tree | 40ab9795a9b775056367b6f6c6ae36c304333152 /perly.y | |
parent | c4d5f83add3e03ac76c328ed8a29701d939174ce (diff) | |
download | perl-1e0e26cb26fde01fd11e7cf9703ff3045aed4e51.tar.gz |
Tweak to perly.y to allow -DDEBUGGING to compile on OS390.
(Building on OS390 uses native YACC and YYDEBUG has other
side effects.)
p4raw-id: //depot/perlio@9248
Diffstat (limited to 'perly.y')
-rw-r--r-- | perly.y | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -16,7 +16,9 @@ #include "EXTERN.h" #define PERL_IN_PERLY_C #include "perl.h" - +#ifdef EBCDIC +#undef YYDEBUG +#endif #define dep() deprecate("\"do\" to call subroutines") /* stuff included here to make perly_c.diff apply better */ |