home *** CD-ROM | disk | FTP | other *** search
/ Chip: Windows 2000 Professional Resource Kit / W2KPRK.iso / apps / posix / source / BSDPSX / BCOPY.C next >
Encoding:
C/C++ Source or Header  |  1999-11-17  |  153 b   |  10 lines

  1. #include <string.h>
  2. /*
  3.  * Bcopy:  Posix implementation MSS
  4.  */
  5.  
  6. void bcopy(const void *src, void *dst, size_t len)
  7. {
  8.   memcpy(dst, src, len);
  9. }
  10.