Subversion Repositories Kolibri OS

Rev

Rev 4973 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. /* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
  2. #include <string.h>
  3.  
  4. #undef bcopy
  5.  
  6. void
  7. bcopy(const void *a, void *b, size_t len)
  8. {
  9.   memmove(b, a, len);
  10. }
  11.