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 >
C/C++ Source or Header  |  1996-09-28  |  156b  |  11 lines

  1. #include "amiga.h"
  2. #include <string.h>
  3.  
  4. #undef bcopy
  5.  
  6. void bcopy(char *b1, char *b2, int length)
  7. {
  8.   /* Unoptimised version */
  9.   memmove(b2, b1, length);
  10. }
  11.