Subversion Repositories Kolibri OS

Rev

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

Rev Author Line No. Line
4973 right-hear 1
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
2
#include 
3
 
4
#undef bcopy
5
 
5098 clevermous 6
void
4973 right-hear 7
bcopy(const void *a, void *b, size_t len)
8
{
5098 clevermous 9
  memmove(b, a, len);
4973 right-hear 10
}