From: Francesco Potortì Date: Sat, 18 Jun 1994 17:54:50 +0000 (+0000) Subject: * m/delta.h (memmove): switch the first two args. X-Git-Tag: emacs-19.34~7895 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2a06556614e9445a90d3e58927e98dce1f45bd6f;p=emacs.git * m/delta.h (memmove): switch the first two args. --- diff --git a/src/m/delta.h b/src/m/delta.h index 8170ba24908..818dd1d8e13 100644 --- a/src/m/delta.h +++ b/src/m/delta.h @@ -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