diff options
author | Mike Stump <mrs@gcc.gnu.org> | 1992-06-29 19:18:38 +0000 |
---|---|---|
committer | Mike Stump <mrs@gcc.gnu.org> | 1992-06-29 19:18:38 +0000 |
commit | 43ae693e4771cdd9b4850243e0b4c115dab3bff4 (patch) | |
tree | 68b3a4f4ab5366ad057bfb1c3c399f1fc04465a7 /gcc | |
parent | 3f7cc57ab810a6da3505641930f79fe446a98eb9 (diff) | |
download | gcc-43ae693e4771cdd9b4850243e0b4c115dab3bff4.zip gcc-43ae693e4771cdd9b4850243e0b4c115dab3bff4.tar.gz gcc-43ae693e4771cdd9b4850243e0b4c115dab3bff4.tar.bz2 |
entered into RCS
From-SVN: r1342
Diffstat (limited to 'gcc')
-rw-r--r-- | gcc/cccp.c | 4 |
1 files changed, 1 insertions, 3 deletions
@@ -73,8 +73,6 @@ typedef unsigned char U_CHAR; #include <sys/time.h> /* for __DATE__ and __TIME__ */ #include <sys/resource.h> #else -#define index strchr -#define rindex strrchr #include <time.h> #include <fcntl.h> #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; |