From: Richard M. Stallman Date: Wed, 21 Jul 1993 04:37:46 +0000 (+0000) Subject: (memmove): Defined as macro. X-Git-Tag: emacs-19.34~11652 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=b6e1c607fc969eb0eef0883f333bedbce0c24742;p=emacs.git (memmove): Defined as macro. --- diff --git a/src/m/att3b.h b/src/m/att3b.h index 7774da4e78f..8dadec23cfd 100644 --- a/src/m/att3b.h +++ b/src/m/att3b.h @@ -156,3 +156,8 @@ extern int sign_extend_temp; #if u3b2 #define NEED_PTEM_H #endif /* u3b2 */ + +/* 3b2 does not have memmove, I'm told. */ +/* It is safe to have no parens around the args in the safe_bcopy call, + and parens would screw up the prototype decl for memmove. */ +#define memmove(d, s, n) safe_bcopy (s, d, n)