diff options
author | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-06-29 19:18:38 +0000 |
---|---|---|
committer | mrs <mrs@138bc75d-0d04-0410-961f-82ee72b054a4> | 1992-06-29 19:18:38 +0000 |
commit | 7e7c58957972496221cf40ee9fb26cad8f1d11b1 (patch) | |
tree | 68b3a4f4ab5366ad057bfb1c3c399f1fc04465a7 /gcc/cccp.c | |
parent | 476e9a33f016b7e6f5b130e1687d8488c656a8b6 (diff) | |
download | gcc-7e7c58957972496221cf40ee9fb26cad8f1d11b1.tar.gz |
entered into RCS
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@1342 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'gcc/cccp.c')
-rw-r--r-- | gcc/cccp.c | 4 |
1 files changed, 1 insertions, 3 deletions
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 <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; |