* 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.
This commit is contained in:
John Gilmore
1992-09-26 09:04:24 +00:00
parent 165410d11f
commit b38f304c4f
4 changed files with 18 additions and 14 deletions

View File

@@ -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__