Commit 43ae693e by Mike Stump

entered into RCS

From-SVN: r1342
parent 3f7cc57a
...@@ -73,8 +73,6 @@ typedef unsigned char U_CHAR; ...@@ -73,8 +73,6 @@ typedef unsigned char U_CHAR;
#include <sys/time.h> /* for __DATE__ and __TIME__ */ #include <sys/time.h> /* for __DATE__ and __TIME__ */
#include <sys/resource.h> #include <sys/resource.h>
#else #else
#define index strchr
#define rindex strrchr
#include <time.h> #include <time.h>
#include <fcntl.h> #include <fcntl.h>
#endif /* USG */ #endif /* USG */
...@@ -1625,7 +1623,7 @@ main (argc, argv) ...@@ -1625,7 +1623,7 @@ main (argc, argv)
s = spec; s = spec;
/* Find the space before the DEPS_TARGET, if there is one. */ /* 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++; while (*s != 0 && *s != ' ') s++;
if (*s != 0) { if (*s != 0) {
deps_target = s + 1; deps_target = s + 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment