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

  1. #include <stdlib.h>
  2. #include <string.h>
  3.  
  4. void *
  5. memmove (void *dst0, const void *src0, size_t length)
  6. {
  7.   bcopy (src0, dst0, length);
  8.   return dst0;
  9. }
  10.  
  11.