aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorRichard M. Stallman1993-07-21 04:37:46 +0000
committerRichard M. Stallman1993-07-21 04:37:46 +0000
commitb6e1c607fc969eb0eef0883f333bedbce0c24742 (patch)
tree3b08a37794a78853c04b2bafa6bcde1e3c588185 /src
parent755f5c8707dae097db88b8abaa16b2af92965957 (diff)
downloademacs-b6e1c607fc969eb0eef0883f333bedbce0c24742.tar.gz
emacs-b6e1c607fc969eb0eef0883f333bedbce0c24742.zip
(memmove): Defined as macro.
Diffstat (limited to 'src')
-rw-r--r--src/m/att3b.h5
1 files changed, 5 insertions, 0 deletions
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;
156#if u3b2 156#if u3b2
157#define NEED_PTEM_H 157#define NEED_PTEM_H
158#endif /* u3b2 */ 158#endif /* u3b2 */
159
160/* 3b2 does not have memmove, I'm told. */
161/* It is safe to have no parens around the args in the safe_bcopy call,
162 and parens would screw up the prototype decl for memmove. */
163#define memmove(d, s, n) safe_bcopy (s, d, n)