]> git.eshelyaron.com Git - emacs.git/commitdiff
* m/delta.h (memmove): switch the first two args.
authorFrancesco Potortì <pot@gnu.org>
Sat, 18 Jun 1994 17:54:50 +0000 (17:54 +0000)
committerFrancesco Potortì <pot@gnu.org>
Sat, 18 Jun 1994 17:54:50 +0000 (17:54 +0000)
src/m/delta.h

index 8170ba2490899e7e710150b7619c25ab954b135b..818dd1d8e136b8614843c47471bf92acb8d7ebb3 100644 (file)
@@ -149,7 +149,7 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.  */
 #define bcopy(from,to,bytes)   memcpy(to,from,bytes)
 #define bzero(to,bytes)                memset(to,0,bytes)
 #define bcmp memcmp
-#define memmove safe_bcopy     /* for overlapping copies */
+#define memmove(t,f,s) safe_bcopy(f,t,s) /* for overlapping copies */
 #undef KERNEL_FILE
 #define KERNEL_FILE "/sysv68"
 #undef LDAV_SYMBOL