* partial-stab.h: Convert single rindex use to strrchr.
authorFred Fish <fnf@specifix.com>
Wed, 17 Jun 1992 18:14:22 +0000 (18:14 +0000)
committerFred Fish <fnf@specifix.com>
Wed, 17 Jun 1992 18:14:22 +0000 (18:14 +0000)
* mipsread.c, dbxread.c:  Remove troublesome inclusion of non-
standard <strings.h> file, now that the only single use of
rindex in the gdb source files is gone.

gdb/ChangeLog
gdb/partial-stab.h

index 27441390aea16cf534fde2c87c489c504f4414b9..1fec6e373d26f22ca6e299072ce681e7afd73083 100644 (file)
@@ -1,3 +1,10 @@
+Wed Jun 17 11:10:40 1992  Fred Fish  (fnf@cygnus.com)
+
+       * partial-stab.h: Convert single rindex use to strrchr.
+       * mipsread.c, dbxread.c:  Remove troublesome inclusion of non-
+       standard <strings.h> file, now that the only single use of
+       rindex in the gdb source files is gone.
+
 Tue Jun 16 22:17:49 1992  Fred Fish  (fnf@cygnus.com)
 
        * mipsread.c:  Undo ill effects from including <strings.h>,
index 862cfad3b2f4dd39bc3150378ab7833593a31993..6b6e3de9a31dd21f24e8fa5115dcd324b28fbd47 100644 (file)
@@ -202,7 +202,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
             If pst exists, is empty, and has a filename ending in '/',
             we assume the previous N_SO was a directory name. */
 
-         p = rindex(namestring, '/');
+         p = strrchr (namestring, '/');
          if (p && *(p+1) == '\000')
            {
              dir_so_symnum = symnum;