* sparc-pinsn.c: Use <string.h> rather than "string.h", for
authorFred Fish <fnf@specifix.com>
Sat, 27 Jun 1992 19:16:47 +0000 (19:16 +0000)
committerFred Fish <fnf@specifix.com>
Sat, 27 Jun 1992 19:16:47 +0000 (19:16 +0000)
consistency with all other gdb files.
* cadillac.c:  Use <string.h> rather than <strings.h>.
* cadillac.c (kernel_dispatch):  Convert rindex usage to strrchr.
* Makefile.in (MAKE):  Remove definition for consistency with
other Makefile.in files and to fix problem with recursive makes.

gdb/ChangeLog
gdb/Makefile.in
gdb/cadillac.c
gdb/sparc-pinsn.c

index 5edbc9d9294785c5fe79d9d3d1da1a79b310e451..525bb8fce5046a9e1b143662709e26e7015a96ac 100644 (file)
@@ -1,3 +1,12 @@
+Sat Jun 27 12:12:20 1992  Fred Fish  (fnf@cygnus.com)
+
+       * sparc-pinsn.c:  Use <string.h> rather than "string.h", for
+       consistency with all other gdb files.
+       * cadillac.c:  Use <string.h> rather than <strings.h>.
+       * cadillac.c (kernel_dispatch):  Convert rindex usage to strrchr.
+       * Makefile.in (MAKE):  Remove definition for consistency with
+       other Makefile.in files and to fix problem with recursive makes.
+
 Fri Jun 26 19:03:23 1992  John Gilmore  (gnu at cygnus.com)
 
        * hppahpux-xdep.c (child_xfer_memory):  Avoid PT_WDUSER because it
index b78657eaed7478e3742cddae65d21f393c264e0a..90ca97569ffca4b261c981ec4960f1f460ec29d2 100644 (file)
@@ -76,7 +76,6 @@ srcdir = .
 
 BISON=yacc
 YACC=$(BISON)
-MAKE=make
 
 # Documentation (gdb.dvi) needs either GNU m4 or SysV m4; 
 # Berkeley/Sun don't have quite enough. 
index ef9e1e8445b042ce5b25de1cf65625cc46233083..4f59924104881aec1f5babccd7af40cc6990a479 100755 (executable)
@@ -43,7 +43,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include <signal.h>
 #include <sys/errno.h>
 #include <termios.h>
-#include <strings.h>
+#include <string.h>
 
 /* Non-zero means that we're doing the cadillac interface. */
 int cadillac = 0;
@@ -949,7 +949,7 @@ kernel_dispatch(queue)
            char *tail;
            int skipped;
 
-           tail = rindex(req->newBreakpoint.fileName.text, '/');
+           tail = strrchr(req->newBreakpoint.fileName.text, '/');
            if (!tail)
              tail = req->newBreakpoint.fileName.text;
            else
index 231a43edf903005a47fda49af4e0c731093e9d54..2b232f047d38ca0dfd010dde55b4781248524bdb 100644 (file)
@@ -21,7 +21,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #include "symtab.h"
 #include "opcode/sparc.h"
 #include "gdbcore.h"
-#include "string.h"
+#include <string.h>
 #include "target.h"
 
 #define        freg_names      (&reg_names[4 * 8])