1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-17 08:31:09 -08:00
emacs/mps/qa/test/testlib/platform.c
Richard Tucker 0f52ec25fc New unit
test system hatched

Copied from Perforce
 Change: 18174
 ServerID: perforce.ravenbrook.com
1997-05-15 15:53:53 +01:00

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