From: Fred Fish Date: Sat, 27 Jun 1992 19:16:47 +0000 (+0000) Subject: * sparc-pinsn.c: Use rather than "string.h", for X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=74fb91be98e302d465b5770e0f5b661fa96d5d46;p=binutils-gdb.git * sparc-pinsn.c: Use rather than "string.h", for consistency with all other gdb files. * cadillac.c: Use rather than . * 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. --- diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 5edbc9d9294..525bb8fce50 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,12 @@ +Sat Jun 27 12:12:20 1992 Fred Fish (fnf@cygnus.com) + + * sparc-pinsn.c: Use rather than "string.h", for + consistency with all other gdb files. + * cadillac.c: Use rather than . + * 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 diff --git a/gdb/Makefile.in b/gdb/Makefile.in index b78657eaed7..90ca97569ff 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -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. diff --git a/gdb/cadillac.c b/gdb/cadillac.c index ef9e1e8445b..4f599241048 100755 --- a/gdb/cadillac.c +++ b/gdb/cadillac.c @@ -43,7 +43,7 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include -#include +#include /* 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 diff --git a/gdb/sparc-pinsn.c b/gdb/sparc-pinsn.c index 231a43edf90..2b232f047d3 100644 --- a/gdb/sparc-pinsn.c +++ b/gdb/sparc-pinsn.c @@ -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 #include "target.h" #define freg_names (®_names[4 * 8])