Mercurial > emacs
changeset 4199:86d3758ff85b
(memmove): Defined as macro.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 21 Jul 1993 04:37:46 +0000 |
parents | 4b43be9f5671 |
children | 3f5f55401364 |
files | src/m/att3b.h |
diffstat | 1 files changed, 5 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/m/att3b.h Wed Jul 21 03:29:43 1993 +0000 +++ b/src/m/att3b.h Wed Jul 21 04:37:46 1993 +0000 @@ -156,3 +156,8 @@ #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)