]> git.eshelyaron.com Git - emacs.git/commitdiff
(memmove): Defined.
authorRichard M. Stallman <rms@gnu.org>
Wed, 21 Jul 1993 21:31:31 +0000 (21:31 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 21 Jul 1993 21:31:31 +0000 (21:31 +0000)
src/s/sunos4shr.h

index f4305b356e5a68c41b7ff8d98e0930dd251ced1a..8fbb82131561c69c9e49b98cd13560383d4033e6 100644 (file)
@@ -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)