summaryrefslogtreecommitdiff
path: root/toke.c
diff options
context:
space:
mode:
authorDave Mitchell <davem@fdisolutions.com>2002-03-21 17:24:40 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2002-03-21 18:19:53 +0000
commit9ede5bc8744780ab88b609ed37e363bd7732ba2e (patch)
treeb9073fe5603df848bc72880f3550446d39706668 /toke.c
parent01b53dac40ffd475c2c1671820aa146af4d23c96 (diff)
downloadperl-9ede5bc8744780ab88b609ed37e363bd7732ba2e.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.c29
1 files changed, 0 insertions, 29 deletions
diff --git a/toke.c b/toke.c
index 82b7e0d651..87c94c1cf3 100644
--- a/toke.c
+++ b/toke.c
@@ -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.