diff options
author | Rafael Garcia-Suarez <rgarciasuarez@gmail.com> | 2002-03-25 12:33:17 +0100 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-25 14:37:03 +0000 |
commit | 0ddaf51316ca1bab139289c51c648ec8213a8af3 (patch) | |
tree | a9fd6998bb705e22db4900a95c81fa173591c4a2 /vms | |
parent | 99ef548ba710eb2617804c989e4d5fdae1f04f37 (diff) | |
download | perl-0ddaf51316ca1bab139289c51c648ec8213a8af3.tar.gz |
Re: what is YYDEBUG and why does it reset errno?
Message-ID: <20020325113317.A1410@rafael>
Apparently VMS does not do YYDEBUG.
p4raw-id: //depot/perl@15486
Diffstat (limited to 'vms')
-rw-r--r-- | vms/perly_c.vms | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vms/perly_c.vms b/vms/perly_c.vms index 463a5eda78..634dba91d4 100644 --- a/vms/perly_c.vms +++ b/vms/perly_c.vms @@ -7,10 +7,10 @@ #include "EXTERN.h" #define PERL_IN_PERLY_C #include "perl.h" -#ifdef EBCDIC +#if defined(EBCDIC) || defined(VMS) #undef YYDEBUG #endif -#define dep() deprecate("\"do\" to call subroutines") +#define dep() deprecate_old("\"do\" to call subroutines") /* stuff included here to make perly_c.diff apply better */ |