From: Mike Stump Date: Mon, 29 Jun 1992 19:18:38 +0000 (+0000) Subject: entered into RCS X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=43ae693e4771cdd9b4850243e0b4c115dab3bff4;p=gcc.git entered into RCS From-SVN: r1342 --- diff --git a/gcc/cccp.c b/gcc/cccp.c index f52c4c9be94..ed6a053915e 100644 --- a/gcc/cccp.c +++ b/gcc/cccp.c @@ -73,8 +73,6 @@ typedef unsigned char U_CHAR; #include /* for __DATE__ and __TIME__ */ #include #else -#define index strchr -#define rindex strrchr #include #include #endif /* USG */ @@ -1625,7 +1623,7 @@ main (argc, argv) s = spec; /* Find the space before the DEPS_TARGET, if there is one. */ - /* Don't use `index'; that causes trouble on USG. */ + /* This should use index. (mrs) */ while (*s != 0 && *s != ' ') s++; if (*s != 0) { deps_target = s + 1;