home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Geek Gadgets 1
/
ADE-1.bin
/
ade-dist
/
emacs-19.28-src.tgz
/
tar.out
/
fsf
/
emacs
/
unixlib
/
src
/
bcopy.c
< prev
next >
Wrap
C/C++ Source or Header
|
1996-09-28
|
156b
|
11 lines
#include "amiga.h"
#include <string.h>
#undef bcopy
void bcopy(char *b1, char *b2, int length)
{
/* Unoptimised version */
memmove(b2, b1, length);
}