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
commitaf547fe3cb5e95abe88529c4f4fb07bc711be863 (patch)
treeb9073fe5603df848bc72880f3550446d39706668 /toke.c
parent4cfb216ae94518eff7b2a785c237d9d3c7d4ecdc (diff)
downloadperl-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.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.