home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
ixemul-45.0-src.tgz
/
tar.out
/
contrib
/
ixemul
/
string
/
memmove.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-28
|
152b
|
11 lines
#include <stdlib.h>
#include <string.h>
void *
memmove (void *dst0, const void *src0, size_t length)
{
bcopy (src0, dst0, length);
return dst0;
}