mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-18 10:16:51 +00:00
* m/delta.h (memmove): switch the first two args.
This commit is contained in:
parent
7a80a6f659
commit
2a06556614
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user