aboutsummaryrefslogtreecommitdiff
path: root/gdb/regex.c
diff options
context:
space:
mode:
authorJohn Gilmore <gnu@cygnus>1992-09-26 09:04:24 +0000
committerJohn Gilmore <gnu@cygnus>1992-09-26 09:04:24 +0000
commitb38f304c4fc12ec5c3d496cb908ad2d2703d67ad (patch)
treeb688c1014731d4d881c7e0e2c7214954b6bb3ac5 /gdb/regex.c
parent165410d11ff0f0ec7f8e5dcb1904fbbceb42c132 (diff)
downloadgdb-b38f304c4fc12ec5c3d496cb908ad2d2703d67ad.zip
gdb-b38f304c4fc12ec5c3d496cb908ad2d2703d67ad.tar.gz
gdb-b38f304c4fc12ec5c3d496cb908ad2d2703d67ad.tar.bz2
* putenv.c: index -> strchr.
* regex.c: Always rename bcopy to memcpy, etc. FIXME: Eventually do the renames rather than use #define's. * sparc-tdep.c (deferred_stores): Moved from sparc-xdep.c. Fix bcopy->memcpy. * sparc-xdep.c: Move deferred_stores to target dependent.
Diffstat (limited to 'gdb/regex.c')
-rw-r--r--gdb/regex.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/gdb/regex.c b/gdb/regex.c
index e4261b3..a945af5 100644
--- a/gdb/regex.c
+++ b/gdb/regex.c
@@ -32,13 +32,9 @@ Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */
#else /* not emacs */
-#ifdef USG
-#ifndef BSTRING
#define bcopy(s,d,n) memcpy((d),(s),(n))
#define bcmp(s1,s2,n) memcmp((s1),(s2),(n))
#define bzero(s,n) memset((s),0,(n))
-#endif
-#endif
/* Make alloca work the best possible way. */
#ifdef __GNUC__