home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 9 / FreshFishVol9-CD2.bin / bbs / gnu / libnix-0.8-src.lha / libnix-0.8 / sources / nix / string / memmove.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-12-12  |  156 b   |  8 lines

  1. #include <string.h>
  2.  
  3. extern void bcopy(const void *s1,void *s2,size_t n);
  4.  
  5. void *memmove(void *s1,const void *s2,size_t n)
  6. { bcopy(s2,s1,n);
  7.   return s1; }
  8.