From: Richard M. Stallman Date: Wed, 21 Jul 1993 21:31:31 +0000 (+0000) Subject: (memmove): Defined. X-Git-Tag: emacs-19.34~11646 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9e6e0fe245c6b947e250a82b9e6fa3283d1c5603;p=emacs.git (memmove): Defined. --- diff --git a/src/s/sunos4shr.h b/src/s/sunos4shr.h index f4305b356e5..8fbb8213156 100644 --- a/src/s/sunos4shr.h +++ b/src/s/sunos4shr.h @@ -26,3 +26,6 @@ #undef SYSTEM_MALLOC #define GNU_MALLOC #define REL_ALLOC + +/* khera@cs.duke.edu says this is needed. */ +#define memmove(to, from, size) bcopy (from, to, size)