mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-01-17 08:31:09 -08:00
12 lines
178 B
C
12 lines
178 B
C
#include "mps.h"
|
|
#include "platform.h"
|
|
|
|
#ifdef MPS_OS_SU
|
|
|
|
void *memmove(void *to, void *from, size_t bytes)
|
|
{
|
|
bcopy((char *)from, (char *)to, (int)bytes);
|
|
return to;
|
|
}
|
|
|
|
#endif
|