mirror of
https://frontier.innolan.net/github/amiga-ixemul.git
synced 2026-09-12 16:13:12 +00:00
11 lines
152 B
C
11 lines
152 B
C
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
void *
|
|
memmove (void *dst0, const void *src0, size_t length)
|
|
{
|
|
bcopy (src0, dst0, length);
|
|
return dst0;
|
|
}
|
|
|