diff options
author | Dave Mitchell <davem@fdisolutions.com> | 2002-03-21 17:24:40 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-21 18:19:53 +0000 |
commit | af547fe3cb5e95abe88529c4f4fb07bc711be863 (patch) | |
tree | b9073fe5603df848bc72880f3550446d39706668 /toke.c | |
parent | 4cfb216ae94518eff7b2a785c237d9d3c7d4ecdc (diff) | |
download | perl-af547fe3cb5e95abe88529c4f4fb07bc711be863.tar.gz |
-DCRIPPLED_CC RIP
Message-ID: <20020321172440.C13683@fdgroup.com>
p4raw-id: //depot/perl@15397
Diffstat (limited to 'toke.c')
-rw-r--r-- | toke.c | 29 |
1 files changed, 0 insertions, 29 deletions
@@ -685,35 +685,6 @@ S_check_uni(pTHX) } } -/* workaround to replace the UNI() macro with a function. Only the - * hints/uts.sh file mentions this. Other comments elsewhere in the - * source indicate Microport Unix might need it too. - */ - -#ifdef CRIPPLED_CC - -#undef UNI -#define UNI(f) return uni(f,s) - -STATIC int -S_uni(pTHX_ I32 f, char *s) -{ - yylval.ival = f; - PL_expect = XTERM; - PL_bufptr = s; - PL_last_uni = PL_oldbufptr; - PL_last_lop_op = f; - if (*s == '(') - return FUNC1; - s = skipspace(s); - if (*s == '(') - return FUNC1; - else - return UNIOP; -} - -#endif /* CRIPPLED_CC */ - /* * LOP : macro to build a list operator. Its behaviour has been replaced * with a subroutine, S_lop() for which LOP is just another name. |